diff options
| author | Stefan Weil <sw@weilnetz.de> | 2024-02-28 15:19:12 +0100 |
|---|---|---|
| committer | Stefan Weil <sw@weilnetz.de> | 2024-02-28 15:22:12 +0100 |
| commit | 9e6b7a18102c41406490778fcd4606fde0e002ec (patch) | |
| tree | a0e133686c03a6dd190a6989c77eb0104aa56918 | |
| parent | 61309d7f66f6c6d6381c529b84931e9a7531c1b6 (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>
| -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 |
