Skip to content

Commit daa4414

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] <[email protected]>
1 parent 0051d73 commit daa4414

13 files changed

+22
-22
lines changed

.github/workflows/changesets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checkout this repository
1414
- name: Checkout Repo
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1818
fetch-depth: 0

.github/workflows/contracts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout sources
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
persist-credentials: false
1919

@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout sources
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
persist-credentials: false
3939

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout sources
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
persist-credentials: false
1919

.github/workflows/golangci-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout sources
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
persist-credentials: false
1515
- name: Install Nix
@@ -33,7 +33,7 @@ jobs:
3333
needs: [golangci-lint-version]
3434
steps:
3535
- name: Checkout sources
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
persist-credentials: false
3939
- name: Install Nix
@@ -61,7 +61,7 @@ jobs:
6161
needs: [golangci-lint-version]
6262
steps:
6363
- name: Checkout sources
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565
with:
6666
persist-credentials: false
6767
- name: Setup GitHub Token
@@ -102,7 +102,7 @@ jobs:
102102
- name: Free Disk Space
103103
uses: smartcontractkit/.github/actions/free-disk-space@free-disk-space/v1
104104
- name: Checkout sources
105-
uses: actions/checkout@v5
105+
uses: actions/checkout@v6
106106
with:
107107
persist-credentials: false
108108
- name: Setup GitHub Token

.github/workflows/integration-tests-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout the repo
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
persist-credentials: false
2525
- name: Setup GitHub Token

.github/workflows/integration-tests-smoke.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
CL_REF: ${{ github.event.inputs.cl_branch_ref }}
7777
- name: Checkout the repo
7878
if: steps.check-image.outputs.exists == 'false'
79-
uses: actions/checkout@v5
79+
uses: actions/checkout@v6
8080
with:
8181
repository: smartcontractkit/chainlink
8282
ref: ${{ env.CUSTOM_CORE_REF }}
@@ -148,7 +148,7 @@ jobs:
148148
aws-lambda-url: ${{ secrets.GATI_RELENG_LAMBDA_URL }}
149149
aws-region: ${{ secrets.QA_AWS_REGION }}
150150
- name: Checkout the repo
151-
uses: actions/checkout@v5
151+
uses: actions/checkout@v6
152152
with:
153153
ref: ${{ github.sha }}
154154
persist-credentials: false
@@ -174,7 +174,7 @@ jobs:
174174
contents: read
175175
steps:
176176
- name: Checkout the repo
177-
uses: actions/checkout@v5
177+
uses: actions/checkout@v6
178178
with:
179179
persist-credentials: false
180180
- name: Install Nix

.github/workflows/integration-tests-soak.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
contents: read
4242
steps:
4343
- name: Checkout the repo
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
persist-credentials: false
4747
- name: Install Nix

.github/workflows/integration_gauntlet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
CI: true
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
persist-credentials: false
2020
- name: Install Nix
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout sources
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
persist-credentials: false
4747

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout sources
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
persist-credentials: false
1919

.github/workflows/monitoring-build-push-ecr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
persist-credentials: false
2323

0 commit comments

Comments
 (0)