GitHub Actions: update to checkout@v4

We seem to be getting "Node.js 16 actions are deprecated." warnings
for jobs that use checkout@v3.  Except for the i686 containers job
that is kept at checkout@v1 [*], update to checkout@v4, which is
said to use Node.js 20.

[*] 6cf4d908 (ci(main): upgrade actions/checkout to v3, 2022-12-05)
    refers to https://github.com/actions/runner/issues/2115 and
    explains why container jobs are kept at checkout@v1.  We may
    want to check the current status of the issue and move it to the
    same version as other jobs, but that is outside the scope of
    this step.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 2024-02-02 12:39:34 -08:00
parent 564d0252ca
commit e94dec0c1d
3 changed files with 10 additions and 10 deletions

View File

@ -19,7 +19,7 @@ jobs:
check-whitespace: check-whitespace:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0



View File

@ -38,7 +38,7 @@ jobs:
COVERITY_LANGUAGE: cxx COVERITY_LANGUAGE: cxx
COVERITY_PLATFORM: overridden-below COVERITY_PLATFORM: overridden-below
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: install minimal Git for Windows SDK - name: install minimal Git for Windows SDK
if: contains(matrix.os, 'windows') if: contains(matrix.os, 'windows')
uses: git-for-windows/setup-git-for-windows-sdk@v1 uses: git-for-windows/setup-git-for-windows-sdk@v1

View File

@ -112,7 +112,7 @@ jobs:
group: windows-build-${{ github.ref }} group: windows-build-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }} cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: git-for-windows/setup-git-for-windows-sdk@v1 - uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: build - name: build
shell: bash shell: bash
@ -173,10 +173,10 @@ jobs:
group: vs-build-${{ github.ref }} group: vs-build-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }} cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: git-for-windows/setup-git-for-windows-sdk@v1 - uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: initialize vcpkg - name: initialize vcpkg
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
repository: 'microsoft/vcpkg' repository: 'microsoft/vcpkg'
path: 'compat/vcbuild/vcpkg' path: 'compat/vcbuild/vcpkg'
@ -297,7 +297,7 @@ jobs:
runs_on_pool: ${{matrix.vector.pool}} runs_on_pool: ${{matrix.vector.pool}}
runs-on: ${{matrix.vector.pool}} runs-on: ${{matrix.vector.pool}}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: ci/install-dependencies.sh - run: ci/install-dependencies.sh
- run: ci/run-build-and-tests.sh - run: ci/run-build-and-tests.sh
- name: print test failures - name: print test failures
@ -331,7 +331,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ${{matrix.vector.image}} container: ${{matrix.vector.image}}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
if: matrix.vector.jobname != 'linux32' if: matrix.vector.jobname != 'linux32'
- uses: actions/checkout@v1 - uses: actions/checkout@v1
if: matrix.vector.jobname == 'linux32' if: matrix.vector.jobname == 'linux32'
@ -362,7 +362,7 @@ jobs:
group: static-analysis-${{ github.ref }} group: static-analysis-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }} cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: ci/install-dependencies.sh - run: ci/install-dependencies.sh
- run: ci/run-static-analysis.sh - run: ci/run-static-analysis.sh
- run: ci/check-directional-formatting.bash - run: ci/check-directional-formatting.bash
@ -385,7 +385,7 @@ jobs:
artifact: sparse-20.04 artifact: sparse-20.04
- name: Install the current `sparse` package - name: Install the current `sparse` package
run: sudo dpkg -i sparse-20.04/sparse_*.deb run: sudo dpkg -i sparse-20.04/sparse_*.deb
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Install other dependencies - name: Install other dependencies
run: ci/install-dependencies.sh run: ci/install-dependencies.sh
- run: make sparse - run: make sparse
@ -400,6 +400,6 @@ jobs:
jobname: Documentation jobname: Documentation
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: ci/install-dependencies.sh - run: ci/install-dependencies.sh
- run: ci/test-documentation.sh - run: ci/test-documentation.sh