Skip to content

Commit 9458717

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) - [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 39f5a2d commit 9458717

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/cloudflare-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout PR Code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
repository: ${{ github.event.client_payload.pr_checkout_repository }}
1919
ref: ${{ github.event.client_payload.pr_head_sha }}

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: ${{ github.repository == 'ruby/rdoc' && !startsWith(github.event_name, 'pull') }}
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Setup Ruby
2525
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
2626
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4 # v3.3.0
19+
- uses: actions/checkout@v5 # v3.3.0
2020
# libyaml-dev is needed for psych, see https://github.com/ruby/setup-ruby/issues/409
2121
- if: ${{ matrix.os == 'ubuntu-latest' }}
2222
run: sudo apt install libyaml-dev

.github/workflows/push_gem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
egress-policy: audit
2929

30-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131

3232
- name: Set up Ruby
3333
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0

.github/workflows/ruby-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
bundler: none
2929
- name: Save latest buildable revision to environment
3030
run: echo "REF=$(ruby -v | cut -d')' -f1 | cut -d' ' -f5)" >> $GITHUB_ENV
31-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.1.0
31+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v3.1.0
3232
with:
3333
repository: ruby/ruby
3434
path: ruby/ruby
@@ -51,7 +51,7 @@ jobs:
5151
autoconf
5252
./configure -C --disable-install-doc
5353
working-directory: ruby/ruby
54-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.1.0
54+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v3.1.0
5555
with:
5656
path: ruby/rdoc
5757
- name: Build RDoc locally

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
runs-on: ${{ matrix.os }}
4343
steps:
44-
- uses: actions/checkout@v4 # v3.3.0
44+
- uses: actions/checkout@v5 # v3.3.0
4545
# libyaml-dev is needed for psych, see https://github.com/ruby/setup-ruby/issues/409
4646
- if: ${{ matrix.os == 'ubuntu-latest' }}
4747
run: sudo apt install libyaml-dev

0 commit comments

Comments
 (0)