diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2022-12-01 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2022-12-01 08:00:00 +0000 |
commit | a1f042495c7a23d62103a14aff07c12f49bde739 (patch) | |
tree | 1eebcf04179e83561b642c9894cfacbd28c9c3b8 /.github | |
parent | a324607b5db8873289409d7c609bb76ddb47022b (diff) | |
download | pam-a1f042495c7a23d62103a14aff07c12f49bde739.tar.gz pam-a1f042495c7a23d62103a14aff07c12f49bde739.tar.bz2 pam-a1f042495c7a23d62103a14aff07c12f49bde739.zip |
.github: switch from actions/checkout@v2 to actions/checkout@v3
This fixes the following diagnostic warning:
Node.js 12 actions are deprecated. For more information see:
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
* .github/workflows/ci.yml: Replace actions/checkout@v2 with
actions/checkout@v3.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a591281a..4e7395de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: whitespace-errors: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: check run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904 @@ -20,7 +20,7 @@ jobs: TARGET: x86_64 VENDORDIR: /usr/etc steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -34,7 +34,7 @@ jobs: CC: gcc-11 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -48,7 +48,7 @@ jobs: CC: gcc-10 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -62,7 +62,7 @@ jobs: CC: gcc TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -76,7 +76,7 @@ jobs: CC: gcc-8 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -91,7 +91,7 @@ jobs: TARGET: x86_64 VENDORDIR: /usr/etc steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -105,7 +105,7 @@ jobs: CC: clang-12 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -119,7 +119,7 @@ jobs: CC: clang-11 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -133,7 +133,7 @@ jobs: CC: clang TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -147,7 +147,7 @@ jobs: CC: clang-9 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -161,7 +161,7 @@ jobs: CC: clang-8 TARGET: x86_64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -176,7 +176,7 @@ jobs: TARGET: x86 VENDORDIR: /usr/etc steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -190,7 +190,7 @@ jobs: CC: gcc-11 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -204,7 +204,7 @@ jobs: CC: gcc-10 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -218,7 +218,7 @@ jobs: CC: gcc-9 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -232,7 +232,7 @@ jobs: CC: gcc-8 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -246,7 +246,7 @@ jobs: CC: clang-10 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -260,7 +260,7 @@ jobs: CC: clang-9 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -274,7 +274,7 @@ jobs: CC: clang-8 TARGET: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -288,7 +288,7 @@ jobs: CC: gcc-11 TARGET: x32 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -302,7 +302,7 @@ jobs: CC: gcc-10 TARGET: x32 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -316,7 +316,7 @@ jobs: CC: gcc-9 TARGET: x32 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies @@ -330,7 +330,7 @@ jobs: CC: gcc-8 TARGET: x32 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install dependencies |