Skip to content

Commit 20b0f8a

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] <[email protected]>
1 parent 9152122 commit 20b0f8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
IMAGE: jbi
2626
steps:
2727
- name: Check out the repo
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0 # Fetch everything (tags)
3131
fetch-tags: true

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
run_lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- name: Install uv
1111
uses: astral-sh/setup-uv@v7
1212
with:
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Install pandoc
2121
run: sudo apt-get install -y pandoc
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v7
2525
with:

0 commit comments

Comments
 (0)