close
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jul 16, 2026
commit 304b941d5eb5412a343326a294dfcc90bd3b0ea0
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
ruby: [ruby-3.3.12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set platform
id: platform
run: |
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
jruby-version: [10.0.6.0]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set platform
id: platform
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-new-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
check_new_releases:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ secrets.PUSH_TO_MASTER_TOKEN }}
- name: Clone setup-ruby
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ruby/setup-ruby
path: setup-ruby
- name: Clone ruby-build
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: rbenv/ruby-build
path: ruby-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
copy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4'
Expand Down
Loading