diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5d156c7443..0239f3fbe5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,7 +21,7 @@ jobs: runs-on: windows-2022 steps: - name: Checkout Files - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: checkout - name: Build with tests diff --git a/.github/workflows/CommitMessage.yml b/.github/workflows/CommitMessage.yml index 00b003d9f6..c82fc7aa96 100644 --- a/.github/workflows/CommitMessage.yml +++ b/.github/workflows/CommitMessage.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Install dependencies diff --git a/.github/workflows/base-installer-cd.yml b/.github/workflows/base-installer-cd.yml index ee5f58e566..f3a3494f70 100644 --- a/.github/workflows/base-installer-cd.yml +++ b/.github/workflows/base-installer-cd.yml @@ -62,14 +62,14 @@ jobs: echo "FW_BUILD_NUMBER=$combined" >> $env:GITHUB_ENV - name: Checkout Files - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: checkout with: ref: ${{ github.event.inputs.fw_ref || github.ref }} fetch-depth: 0 - name: Checkout Helps - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: helps-checkout with: repository: 'sillsdev/FwHelps' @@ -78,7 +78,7 @@ jobs: path: 'DistFiles/Helps' - name: Checkout PatchableInstaller - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: installer-checkout with: repository: 'sillsdev/genericinstaller' @@ -87,7 +87,7 @@ jobs: path: 'PatchableInstaller' - name: Checkout Localizations - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: loc-checkout with: repository: 'sillsdev/FwLocalizations' @@ -95,7 +95,7 @@ jobs: fetch-depth: 0 path: 'Localizations' - name: Checkout liblcm - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: liblcm-checkout with: repository: 'sillsdev/liblcm' diff --git a/.github/workflows/check-whitespace.yml b/.github/workflows/check-whitespace.yml index 6bdf2382f6..d420a76db6 100644 --- a/.github/workflows/check-whitespace.yml +++ b/.github/workflows/check-whitespace.yml @@ -13,7 +13,7 @@ jobs: check-whitespace: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 48717e5ec7..0f357df1cc 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -87,7 +87,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 # ================================================================ # CACHING - speeds up repeat runs significantly diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 88c73c9981..24fe0db73f 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Link check with lychee (non-blocking) uses: lycheeverse/lychee-action@v2.8.0 with: diff --git a/.github/workflows/openspec-validate.yml b/.github/workflows/openspec-validate.yml index 68bcf485d5..3fb92fb38e 100644 --- a/.github/workflows/openspec-validate.yml +++ b/.github/workflows/openspec-validate.yml @@ -10,7 +10,7 @@ jobs: validate-refs: runs-on: windows-2022 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Validate OpenSpec cross-references shell: pwsh run: | diff --git a/.github/workflows/patch-installer-cd.yml b/.github/workflows/patch-installer-cd.yml index 0a50e7d58c..61e8f78aa9 100644 --- a/.github/workflows/patch-installer-cd.yml +++ b/.github/workflows/patch-installer-cd.yml @@ -1,4 +1,4 @@ -name: Patch Installer +name: Patch Installer # Builds the FieldWorks Patch Installer on the specified `base_release` # If `make_release` is true, uploads installers to https://flex-updates.s3.amazonaws.com/?prefix=jobs/FieldWorks-Win-all-Release-Patch. @@ -77,14 +77,14 @@ jobs: echo "BuildVersionSegment=$combined" >> $env:GITHUB_ENV - name: Checkout Files - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: checkout with: ref: ${{ github.event.inputs.fw_ref || github.ref }} fetch-depth: 0 - name: Checkout Helps - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: helps-checkout with: repository: 'sillsdev/FwHelps' @@ -93,7 +93,7 @@ jobs: path: 'DistFiles/Helps' - name: Checkout PatchableInstaller - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: installer-checkout with: repository: 'sillsdev/genericinstaller' @@ -102,7 +102,7 @@ jobs: path: 'PatchableInstaller' - name: Checkout Localizations - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: loc-checkout with: repository: 'sillsdev/FwLocalizations' @@ -110,7 +110,7 @@ jobs: fetch-depth: 0 path: 'Localizations' - name: Checkout liblcm - uses: actions/checkout@v6 + uses: actions/checkout@v7 id: liblcm-checkout with: repository: 'sillsdev/liblcm'