Skip to content

Commit

Permalink
switch to actions/checkout@v3
Browse files Browse the repository at this point in the history
Since v2 triggers deprecation warnings, switch to v3.
  • Loading branch information
vapier committed Oct 19, 2022
1 parent 6c4c758 commit b8befc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b8befc8

Please sign in to comment.