Skip to content

Commit 9791da3

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 69bb19a commit 9791da3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
git config --global core.autocrlf false
2929
git config --global core.eol lf
3030
git config --global advice.detachedHead 0
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Set up Ruby
3333
uses: ruby/setup-ruby@v1
3434
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
timeout-minutes: 10
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- name: Extract release note
1313
run: |
1414
ruby \
@@ -40,7 +40,7 @@ jobs:
4040
- ruby
4141
- jruby
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
- uses: ruby/setup-ruby@v1
4545
with:
4646
ruby-version: ${{ matrix.ruby }}

.github/workflows/sync-ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
if: ${{ github.repository_owner == 'ruby' }}
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212

1313
- name: Create GitHub App token
1414
id: app-token

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
git config --global core.autocrlf false
2929
git config --global core.eol lf
3030
git config --global advice.detachedHead 0
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- uses: actions/setup-java@v5
3333
with:
3434
distribution: zulu

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
git config --global core.autocrlf false
3030
git config --global core.eol lf
3131
git config --global advice.detachedHead 0
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- uses: actions/setup-java@v5
3434
with:
3535
distribution: zulu

0 commit comments

Comments
 (0)