Skip to content

Commit cb36cb9

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 dd897ce commit cb36cb9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
contents: write # clone repo and create release
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Install Ruby
2020
uses: ruby/setup-ruby@v1
2121
with:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
outputs:
2020
ruby: ${{ steps.ruby.outputs.versions }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Install Ruby ${{ matrix.ruby }}
2424
uses: ruby/setup-ruby@v1
2525
with:
@@ -39,7 +39,7 @@ jobs:
3939
matrix:
4040
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- name: Install Ruby ${{ matrix.ruby }}
4444
uses: ruby/setup-ruby@v1
4545
with:

0 commit comments

Comments
 (0)