Skip to content

Commit 1cada96

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 4b9e43a commit 1cada96

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

.github/workflows/baseruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- ruby-3.1
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838
- uses: actions/cache@v4
3939
with:
4040
path: .downloaded-cache

.github/workflows/bundled_gems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "GNUMAKEFLAGS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
2929
echo "TODAY=$(date +%F)" >> $GITHUB_ENV
3030
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232

3333
- uses: actions/cache@v4
3434
with:

.github/workflows/check_dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
git config --global advice.detachedHead 0
4141
git config --global init.defaultBranch garbage
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v6
4343
- uses: actions/cache@v4
4444
with:
4545
path: .downloaded-cache

.github/workflows/check_misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
checks:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Check if C-sources are US-ASCII
1414
run: |
1515
! grep -r -n '[^ -~]' *.[chy] include internal win32/*.[ch]

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev bison autoconf ruby
3737
3838
- name: Checkout repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040

4141
- uses: actions/cache@v4
4242
with:

.github/workflows/compilers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ jobs:
224224
- name: setenv
225225
run: |
226226
echo "GNUMAKEFLAGS=-sj$((1 + $(nproc --all)))" >> $GITHUB_ENV
227-
- uses: actions/checkout@v4
227+
- uses: actions/checkout@v6
228228
with:
229229
path: src
230230
- uses: actions/cache@v4

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
git config --global advice.detachedHead 0
3737
git config --global init.defaultBranch garbage
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939
with:
4040
path: src
4141
- uses: actions/cache@v4

.github/workflows/mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
git config --global core.eol lf
5555
git config --global advice.detachedHead 0
5656
git config --global init.defaultBranch garbage
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v6
5858
with:
5959
path: src
6060
- uses: actions/cache@v4

.github/workflows/mjit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
git config --global advice.detachedHead 0
4242
git config --global init.defaultBranch garbage
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4444
with:
4545
path: src
4646
- uses: actions/cache@v4

.github/workflows/spec_guards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- ruby-3.1
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- uses: ruby/setup-ruby@v1
3535
with:
3636
ruby-version: ${{ matrix.ruby }}

0 commit comments

Comments
 (0)