Browse Source

⬆ 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](https://github.com/actions/checkout/compare/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]>
pull/14402/head
dependabot[bot] 8 months ago
committed by GitHub
parent
commit
08f1eae517
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/pre-commit.yml

4
.github/workflows/pre-commit.yml

@ -17,7 +17,7 @@ jobs:
env: env:
GITHUB_CONTEXT: ${{ toJson(github) }} GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT" run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v5 - uses: actions/checkout@v6
name: Checkout PR for own repo name: Checkout PR for own repo
if: env.IS_FORK == 'false' if: env.IS_FORK == 'false'
with: with:
@ -26,7 +26,7 @@ jobs:
# A token other than the default GITHUB_TOKEN is needed to be able to trigger CI # A token other than the default GITHUB_TOKEN is needed to be able to trigger CI
token: ${{ secrets.PRE_COMMIT }} token: ${{ secrets.PRE_COMMIT }}
# pre-commit lite ci needs the default checkout configs to work # pre-commit lite ci needs the default checkout configs to work
- uses: actions/checkout@v5 - uses: actions/checkout@v6
name: Checkout PR for fork name: Checkout PR for fork
if: env.IS_FORK == 'true' if: env.IS_FORK == 'true'
- name: Set up Python - name: Set up Python

Loading…
Cancel
Save