Skip to content

Commit d83120d

Browse files
build(deps): 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 2799afb commit d83120d

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
LD: ${{ matrix.cc }}
3131
steps:
3232
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
- name: Ruby version
3535
run: ruby -v
3636
- name: Compiler version
@@ -45,7 +45,7 @@ jobs:
4545
MRUBY_CONFIG: ci/msvc
4646
steps:
4747
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
- name: Ruby version
5050
run: ruby -v
5151
- name: Build and test

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
LDFLAGS: --coverage
1717
steps:
1818
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
- name: Ruby version
2121
run: ruby -v
2222
- name: Compiler version

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: Install
1717
run: |
1818
python -m pip install --upgrade pip

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
steps:
2121
- name: "Checkout ${{ github.ref_name }} ( ${{ github.sha }} )"
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
- name: Builds
2424
id: builds
2525
run: |

.github/workflows/super-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
# Full git history is needed to get a proper list of changed files within `super-linter`
2121
fetch-depth: 0

0 commit comments

Comments
 (0)