Skip to content

Commit 76d5402

Browse files
chore(deps): update actions/checkout action to v6
1 parent 734a968 commit 76d5402

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node: [ 20, 22, 24 ]
1919
name: Build and test with Node ${{ matrix.node }}
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- uses: ./.github/actions/node
2323
with:
2424
node-version-override: ${{ matrix.node }}
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
name: Test against GraphQL 17 alpha with incremental delivery
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- uses: ./.github/actions/node
3535
- run: npm i --legacy-peer-deps graphql@17.0.0-alpha.2
3636
- run: npm test
@@ -41,23 +41,23 @@ jobs:
4141
runs-on: ubuntu-latest
4242
name: Prettier
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545
- uses: ./.github/actions/node
4646
- run: npm run prettier-check
4747

4848
lint:
4949
runs-on: ubuntu-latest
5050
name: Lint
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v6
5353
- uses: ./.github/actions/node
5454
- run: npm run lint
5555

5656
spell-check:
5757
runs-on: ubuntu-latest
5858
name: Spell Check
5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v6
6161
- uses: ./.github/actions/node
6262
- run: npm run spell-check
6363

@@ -70,7 +70,7 @@ jobs:
7070
name: Changesets
7171
if: ${{ (! startsWith(github.head_ref, 'changeset-release/')) && (!contains(github.event.pull_request.labels.*.name, 'no-changeset-needed')) }}
7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v6
7474
with:
7575
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
7676
fetch-depth: 0

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id-token: write
1616
steps:
1717
- name: Checkout Repo
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2121
fetch-depth: 0

0 commit comments

Comments
 (0)