Skip to content

Commit b918e04

Browse files
fix: bump actions/checkout from 5 to 6 (#138)
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Matt Trachier <matttrach@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matt Trachier <matttrach@gmail.com>
1 parent df517db commit b918e04

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

.github/workflows/fossa.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,19 @@ jobs:
1515
timeout-minutes: 30
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919

2020
# The FOSSA token is shared between all repos in Rancher's GH org. It can be
2121
# used directly and there is no need to request specific access to EIO.
2222
- name: Read FOSSA token
23-
uses: rancher-eio/read-vault-secrets@main
23+
# https://github.com/rancher-eio/read-vault-secrets/commits/main/
24+
uses: rancher-eio/read-vault-secrets@7282bf97898cd1c16c89f837e0bb442e6d384c89 # latest
2425
with:
2526
secrets: |
2627
secret/data/github/org/rancher/fossa/push token | FOSSA_API_KEY_PUSH_ONLY
2728
2829
- name: FOSSA scan
30+
# https://github.com/fossas/fossa-action/releases
2931
uses: fossas/fossa-action@ff70fe9fe17cbd2040648f1c45e8ec4e4884dcf3 # v1.9.0
3032
with:
3133
api-key: ${{ env.FOSSA_API_KEY_PUSH_ONLY }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
if: needs.release.outputs.release_pr
8181
runs-on: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
83+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8484
with:
8585
token: ${{secrets.GITHUB_TOKEN}}
8686
fetch-depth: 0
@@ -123,7 +123,7 @@ jobs:
123123
if: always() && needs.release.outputs.release_pr
124124
runs-on: ubuntu-latest
125125
steps:
126-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
126+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
127127
with:
128128
token: ${{secrets.GITHUB_TOKEN}}
129129
fetch-depth: 0

.github/workflows/validate.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: 'Terraform'
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
17+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
with:
1919
fetch-depth: 0
2020
- name: install-nix
@@ -33,7 +33,7 @@ jobs:
3333
name: 'Lint Workflows'
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
36+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737
with:
3838
fetch-depth: 0
3939
- name: install-nix
@@ -49,7 +49,7 @@ jobs:
4949
shellcheck:
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
52+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5353
with:
5454
fetch-depth: 0
5555
- name: install-nix
@@ -69,7 +69,7 @@ jobs:
6969
validate-commit-message:
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
72+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7373
with:
7474
fetch-depth: 0 # fetch all history so that we can validate the commit messages
7575
- name: install-nix
@@ -153,7 +153,7 @@ jobs:
153153
name: 'Scan for Secrets'
154154
runs-on: ubuntu-latest
155155
steps:
156-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
156+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
157157
with:
158158
fetch-depth: 0
159159
- name: install-nix
@@ -213,7 +213,7 @@ jobs:
213213
test-compile-check:
214214
runs-on: ubuntu-latest
215215
steps:
216-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
216+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
217217
with:
218218
fetch-depth: 0
219219
- name: install-nix
@@ -231,7 +231,7 @@ jobs:
231231
lint-tests:
232232
runs-on: ubuntu-latest
233233
steps:
234-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
234+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
235235
with:
236236
fetch-depth: 0
237237
- name: install-nix

0 commit comments

Comments
 (0)