Skip to content

Commit

Permalink
ci: Update actions/checkout in GitHub Actions workflows to v3 (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel authored Nov 14, 2022
1 parent 3f7daa9 commit 1df8c24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install packages
if: matrix.install
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Boost
shell: cmd
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install packages
Expand Down Expand Up @@ -52,4 +52,3 @@ jobs:
uses: codecov/codecov-action@v1.2.1
with:
files: ../boost-root/coverage.info

2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/docs-prerequisites
- uses: ./.github/actions/setup-boost
- uses: ./.github/actions/generate-doc
Expand Down

0 comments on commit 1df8c24

Please sign in to comment.