Commit 65ef491b11146a78793633b7b7bd8837e9902da0
Committed by
GitHub
1 parent
5c175422
chore: bump actions/checkout from 2 to 3 (#751)
* chore: bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Apply suggestions from code review Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <henry.fredrick.schreiner@cern.ch>
Showing
2 changed files
with
3 additions
and
3 deletions
.github/workflows/build.yml
.github/workflows/tests.yml
| ... | ... | @@ -112,7 +112,7 @@ jobs: |
| 112 | 112 | name: Meson build |
| 113 | 113 | runs-on: ubuntu-latest |
| 114 | 114 | steps: |
| 115 | - - uses: actions/checkout@v2 | |
| 115 | + - uses: actions/checkout@v3 | |
| 116 | 116 | |
| 117 | 117 | - name: Prepare commands |
| 118 | 118 | run: | |
| ... | ... | @@ -129,7 +129,7 @@ jobs: |
| 129 | 129 | name: CMake config check |
| 130 | 130 | runs-on: ubuntu-latest |
| 131 | 131 | steps: |
| 132 | - - uses: actions/checkout@v2 | |
| 132 | + - uses: actions/checkout@v3 | |
| 133 | 133 | |
| 134 | 134 | - name: Check CMake 3.4 |
| 135 | 135 | with: | ... | ... |