Skip to content

Commit e2ea6c4

Browse files
Bump actions/checkout from 5 to 6 (#166)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e09225a commit e2ea6c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
ARGO_VM: ${{ matrix.vm }}
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Install packages
2222
run: |
2323
sudo apt-get update

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ jobs:
44
codespell:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- uses: codespell-project/actions-codespell@master

.github/workflows/cpplint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
cpplint:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- uses: actions/setup-python@v6
99
- run: pip install cpplint
1010
- run: cpplint --quiet --root=../ --filter=-build/c++11,-build/include,-runtime/array,-runtime/string,-whitespace/braces,-whitespace/indent,-whitespace/line_length,-whitespace/tab --recursive src tests

0 commit comments

Comments
 (0)