Skip to content

Commit b10552a

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 a456e92 commit b10552a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/latest-changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
env:
2525
GITHUB_CONTEXT: ${{ toJson(github) }}
2626
run: echo "$GITHUB_CONTEXT"
27-
# pin to actions/checkout@v5 for compatibility with latest-changes
27+
# pin to actions/checkout@v6 for compatibility with latest-changes
2828
# Ref: https://github.com/actions/checkout/issues/2313
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
# To allow latest-changes to commit to the main branch
3232
token: ${{ secrets.FASTAPI_LATEST_CHANGES }}

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
GITHUB_CONTEXT: ${{ toJson(github) }}
2020
run: echo "$GITHUB_CONTEXT"
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
name: Checkout PR for own repo
2323
if: env.HAS_SECRETS == 'true'
2424
with:
@@ -30,7 +30,7 @@ jobs:
3030
# A token other than the default GITHUB_TOKEN is needed to be able to trigger CI
3131
token: ${{ secrets.PRE_COMMIT }}
3232
# pre-commit lite ci needs the default checkout configs to work
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
name: Checkout PR for fork
3535
if: env.HAS_SECRETS == 'false'
3636
with:

0 commit comments

Comments
 (0)