Skip to content

Commit aec722f

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] <support@github.com>
1 parent d08886f commit aec722f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/check_changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
!contains(github.event.pull_request.body, '[skip ci]') &&
1414
!contains(github.event.pull_request.labels.*.name, 'skip changelog')
1515
steps:
16-
- uses: actions/checkout@v5.0.0
16+
- uses: actions/checkout@v6
1717
- name: Check that CHANGELOG is touched
1818
run: |
1919
git fetch origin ${{ github.base_ref }} --depth 1 && \

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v5.0.0
12+
uses: actions/checkout@v6
1313
- name: Set up Ruby
1414
uses: ruby/setup-ruby@v1
1515
with:
@@ -34,7 +34,7 @@ jobs:
3434
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v5.0.0
37+
uses: actions/checkout@v6
3838
- name: Set up Ruby
3939
uses: ruby/setup-ruby@v1
4040
with:
@@ -53,7 +53,7 @@ jobs:
5353
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
5454
steps:
5555
- name: Checkout code
56-
uses: actions/checkout@v5.0.0
56+
uses: actions/checkout@v6
5757
- name: Set up Ruby
5858
uses: ruby/setup-ruby@v1
5959
with:

.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

0 commit comments

Comments
 (0)