Skip to content

Commit fec7945

Browse files
Bump actions/checkout from 5 to 6
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] <[email protected]>
1 parent 41305ac commit fec7945

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build-on-linux:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- run: uname -m
1111
- run: sudo apt-get install -y chrpath
1212
- run: rustup target list --installed
@@ -20,7 +20,7 @@ jobs:
2020
build-on-darwin-x86_64:
2121
runs-on: macos-15-intel
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- run: uname -m
2525
- run: rustup target add aarch64-apple-darwin
2626
- run: make download download-dependencies
@@ -34,7 +34,7 @@ jobs:
3434
build-on-darwin-arm64:
3535
runs-on: macos-14
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- run: uname -m
3939
- run: rustup target add x86_64-apple-darwin
4040
- run: make download download-dependencies

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- jruby-10.0
2525
fail-fast: false
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- uses: ruby/setup-ruby@v1
2929
with:
3030
ruby-version: "${{ matrix.ruby }}"

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- DOCKER_FILE=Dockerfile.debian DOCKER_TAG_SUFFIX=-debian
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: docker/login-action@v3
1818
with:
1919
registry: ghcr.io

.github/workflows/livecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
livecheck:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- uses: ruby/setup-ruby@v1
1919
with:
2020
ruby-version: '3'

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
rubocop:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: ruby/setup-ruby@v1
1313
with:
1414
ruby-version: '3'

0 commit comments

Comments
 (0)