Skip to content

Commit 3e977f5

Browse files
Bump actions/checkout from 5 to 6 (#2975)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f03c486 commit 3e977f5

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/benchmark.yml

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

6666
steps:
6767
#Check out
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
with:
7070
fetch-depth: 100
7171
token: ${{ secrets.REPO_TOKEN }}

.github/workflows/gh-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
#Check out
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 100
1414

.github/workflows/node-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
changes_found: ${{ steps.check_changes.outputs.changes_found }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 2
2222

@@ -41,7 +41,7 @@ jobs:
4141
if: needs.check.outputs.changes_found == 'true'
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 100
4747
token: ${{ secrets.REPO_TOKEN }}
@@ -98,7 +98,7 @@ jobs:
9898
if: needs.check.outputs.changes_found == 'true'
9999
runs-on: ubuntu-latest
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
with:
103103
fetch-depth: 100
104104
token: ${{ secrets.REPO_TOKEN }}

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
env:
1111
YARN_ENABLE_HARDENED_MODE: 0
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Setup Node.js environment
1515
uses: actions/setup-node@v5
1616
with:
@@ -50,7 +50,7 @@ jobs:
5050
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
5151
YARN_ENABLE_HARDENED_MODE: 0
5252
steps:
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454

5555
- name: Enable btree btree_gist
5656
run: psql "postgresql://$DB_USER:$DB_PASS@$DB_HOST:$DB_PORT/$DB_DATABASE" -c "CREATE EXTENSION IF NOT EXISTS btree_gist;"

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
outputs:
2525
commit-message: ${{ steps.get_commit_message.outputs.commit-message }}
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030

@@ -58,7 +58,7 @@ jobs:
5858
changed-query: ${{ steps.changed-query.outputs.changed }}
5959
changed-testing: ${{ steps.changed-testing.outputs.changed }}
6060
steps:
61-
- uses: actions/checkout@v5
61+
- uses: actions/checkout@v6
6262
with:
6363
fetch-depth: 100 # Needed to detect changes by having commit history
6464

@@ -121,7 +121,7 @@ jobs:
121121
&& github.repository == 'subquery/subql'
122122
runs-on: ubuntu-latest
123123
steps:
124-
- uses: actions/checkout@v5
124+
- uses: actions/checkout@v6
125125
with:
126126
fetch-depth: 0
127127

@@ -218,7 +218,7 @@ jobs:
218218
&& github.repository == 'subquery/subql'
219219
runs-on: ubuntu-latest
220220
steps:
221-
- uses: actions/checkout@v5
221+
- uses: actions/checkout@v6
222222
with:
223223
fetch-depth: 0
224224
token: ${{ secrets.REPO_TOKEN }} # Needed to push changes back to repo

.github/workflows/query-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
changes_found: ${{ steps.check_changes.outputs.changes_found }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 2
2222
- name: Check for package changes and commit message
@@ -40,7 +40,7 @@ jobs:
4040
if: needs.check.outputs.changes_found == 'true'
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 100
4646
token: ${{ secrets.REPO_TOKEN }}
@@ -98,7 +98,7 @@ jobs:
9898
if: needs.check.outputs.changes_found == 'true'
9999
runs-on: ubuntu-latest
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
with:
103103
fetch-depth: 100
104104
token: ${{ secrets.REPO_TOKEN }}

0 commit comments

Comments
 (0)