diff options
| author | Stefan Weil <sw@weilnetz.de> | 2024-02-28 15:19:12 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2024-03-04 22:10:05 +0100 |
| commit | b0ce41d3052866b7a22ce0233d558d5a4529ac99 (patch) | |
| tree | 6a72f2f893d76079aa9e167c7f8153aff9e8852d /.github | |
| parent | 39e8c50a2f9bdcf36810ee3d41bcbf1cc78968ae (diff) | |
Update GitHub checkout action to latest version
This fixes lots of warnings like this one:
The following actions uses node12 which is deprecated and will be forced to run on node16:
actions/checkout@v2. For more info:
https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/abi_check.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/build.yml | 12 | ||||
| -rw-r--r-- | .github/workflows/code_style.yml | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/abi_check.yml b/.github/workflows/abi_check.yml index bb0162dc..692cc4c3 100644 --- a/.github/workflows/abi_check.yml +++ b/.github/workflows/abi_check.yml @@ -8,7 +8,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Requirements run: | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5d3f68c..b65d3d6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Requirements run: | @@ -38,7 +38,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Requirements run: | @@ -60,7 +60,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Requirements run: | @@ -85,7 +85,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Requirements run: | @@ -108,7 +108,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build and run tests run: | @@ -160,7 +160,7 @@ jobs: git config --system core.longpaths true - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set compiler environment shell: cmd diff --git a/.github/workflows/code_style.yml b/.github/workflows/code_style.yml index bd09e5e8..4d5db306 100644 --- a/.github/workflows/code_style.yml +++ b/.github/workflows/code_style.yml @@ -8,7 +8,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 |
