Skip to content

Commit be3032f

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0edc8e2 commit be3032f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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@v4
31+
- uses: actions/checkout@v5
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@v4
11+
- uses: actions/checkout@v5
1212
- name: Extract release note
1313
run: |
1414
ruby \
@@ -40,7 +40,7 @@ jobs:
4040
- ruby
4141
- jruby
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
- uses: ruby/setup-ruby@v1
4545
with:
4646
ruby-version: ${{ matrix.ruby }}

.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@v4
31+
- uses: actions/checkout@v5
3232
- uses: actions/setup-java@v4
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@v4
32+
- uses: actions/checkout@v5
3333
- uses: actions/setup-java@v4
3434
with:
3535
distribution: zulu

0 commit comments

Comments
 (0)