From b8befc815a7b192834de50301d398f4aba6f43f1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 19 Oct 2022 23:22:22 +0545 Subject: [PATCH] switch to actions/checkout@v3 Since v2 triggers deprecation warnings, switch to v3. --- .github/workflows/build-test-ci.yml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml index 04a534a..48170bd 100644 --- a/.github/workflows/build-test-ci.yml +++ b/.github/workflows/build-test-ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Create fake source to build. - name: Generate source diff --git a/README.md b/README.md index b562759..0132bb1 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ jobs: coverity: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: vapier/coverity-scan-action@v1 with: email: ${{ secrets.COVERITY_SCAN_EMAIL }} @@ -169,7 +169,7 @@ For example, you want to do: jobs: ... steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Here is your dedicated configure/pre-build set of commands. - runs: ./configure ... # Then you can run coverity build. @@ -287,7 +287,7 @@ The `[*]` lines aren't needed at all with the GitHub Action. coverity: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Configure [5] run: ./configure [2] - uses: vapier/coverity-scan-action@v1