Skip to content

Commit 81c8b23

Browse files
Bump actions/checkout from 6 to 7 (#868)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3a266f3 commit 81c8b23

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/postcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
check-focus:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v6
9+
- uses: actions/checkout@v7
1010
- run: python .github/check-scripts/check_code_focus.py
1111

1212
check-json:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- run: python .github/check-scripts/check_json.py

.github/workflows/prettier.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
steps:
1616
- name: Checkout
1717
if: github.event_name == 'push'
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919
with:
2020
ref: ${{ github.head_ref }}
2121
- name: Checkout
2222
if: github.event_name == 'pull_request'
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424
with:
2525
fetch-depth: 2
2626
- name: Prettify code

0 commit comments

Comments
 (0)