Skip to content

Commit f399af1

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 a607cc9 commit f399af1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Check gem files
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
ruby-version: '3.2' # Not needed with a .ruby-version file
@@ -18,7 +18,7 @@ jobs:
1818
name: Run pre-commit # https://pre-commit.com/
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- uses: actions/setup-python@v6 # https://www.python.org/
2323
with:
2424
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax

.github/workflows/super-linter.yml

Lines changed: 1 addition & 1 deletion
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
12+
uses: actions/checkout@v6
1313
with:
1414
# Full git history is needed to get a proper list of changed files within `super-linter`
1515
fetch-depth: 0

0 commit comments

Comments
 (0)