Skip to content

Commit 2e2bf01

Browse files
committed
Update actions
1 parent ba1b50a commit 2e2bf01

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
egress-policy: audit
4747

4848
- name: Checkout repository
49-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
49+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/int.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
with:
2020
egress-policy: audit
2121
- name: Checkout
22-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
22+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2323
with:
2424
fetch-depth: 0
2525
- name: Set up Go
26-
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8
26+
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
2727
with:
2828
go-version: 1.17
2929
- name: Configure AWS Credentials

.github/workflows/kb-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
ref: ${{ github.event.pull_request.head.sha }}
3131
- name: Set up Go
32-
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8 # v2.1.3
32+
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
3333
with:
3434
go-version: 1.17
3535
- name: Run coverage

.github/workflows/kbanalysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
egress-policy: audit
2828

29-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
29+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
3030
with:
3131
repository: step-security/secure-repo
3232

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
with:
2222
egress-policy: audit
2323
- name: Checkout
24-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
24+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2525
with:
2626
fetch-depth: 0
2727
- name: Set up Go
28-
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8
28+
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
2929
with:
3030
go-version: 1.17
3131

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
egress-policy: audit
3838

3939
- name: "Checkout code"
40-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
40+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
4141
with:
4242
persist-credentials: false
4343

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,17 @@ jobs:
2929
objects.githubusercontent.com:443
3030
golang.org:443
3131
- name: Checkout
32-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
32+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
3333
with:
3434
ref: ${{ github.event.pull_request.head.sha }}
3535
- name: Set up Go
36-
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8 # v2.1.3
36+
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
3737
with:
3838
go-version: 1.17
3939
- name: Run coverage
4040
run: go test ./... -coverpkg=./... -race -coverprofile=coverage.txt -covermode=atomic
4141
env:
4242
PAT: ${{ secrets.GITHUB_TOKEN }}
43-
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2
43+
- uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1
44+
with:
45+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)