Skip to content

Commit 3458f4c

Browse files
[chore] : Bump the actions group with 4 updates
--- updated-dependencies: - dependency-name: actions/checkout dependency-version: '09d2acae674a48949e3602304ab46fd20ae0c42f' dependency-type: direct:production dependency-group: actions - dependency-name: actions/setup-go dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 400e96e commit 3458f4c

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/check.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
GO_VERSION: [ "1.20","1.21" ]
2020
steps:
2121
- name: "Fetch source code"
22-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
22+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
2323

2424
- name: Install Go toolchain
25-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
25+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2626
with:
2727
go-version: ${{ matrix.GO_VERSION }}
2828
- name: Cache Go modules
29-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
29+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
3030
with:
3131
path: |
3232
~/.cache/go-build
@@ -45,18 +45,18 @@ jobs:
4545
GO_VERSION: [ "1.20","1.21" ]
4646
steps:
4747
- name: "Fetch source code"
48-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
48+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
4949

5050
- name: Install Go toolchain
51-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
51+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
5252
with:
5353
go-version: ${{ matrix.GO_VERSION }}
5454

5555
# NOTE: This cache is shared so the following step must always be
5656
# identical across the unit-tests, e2e-tests, and consistency-checks
5757
# jobs, or else weird things could happen.
5858
- name: Cache Go modules
59-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
59+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6060
with:
6161
path: |
6262
~/.cache/go-build
@@ -69,7 +69,7 @@ jobs:
6969
go test ./...
7070
make cov
7171
- name: Upload coverage report
72-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
72+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
7373
with:
7474
path: coverage.out
7575
name: Coverage-report-${{matrix.GO_VERSION}}
@@ -86,18 +86,18 @@ jobs:
8686
GO_VERSION: [ "1.20","1.21" ]
8787
steps:
8888
- name: "Fetch source code"
89-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
89+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
9090

9191
- name: Install Go toolchain
92-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
92+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
9393
with:
9494
go-version: ${{ matrix.GO_VERSION }}
9595

9696
# NOTE: This cache is shared so the following step must always be
9797
# identical across the unit-tests, e2e-tests, and consistency-checks
9898
# jobs, or else weird things could happen.
9999
- name: Cache Go modules
100-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
100+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
101101
with:
102102
path: |
103103
~/.cache/go-build
@@ -119,18 +119,18 @@ jobs:
119119
GO_VERSION: [ "1.20","1.21" ]
120120
steps:
121121
- name: "Fetch source code"
122-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
122+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
123123

124124
- name: Install Go toolchain
125-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
125+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
126126
with:
127127
go-version: ${{ matrix.GO_VERSION }}
128128

129129
# NOTE: This cache is shared so the following step must always be
130130
# identical across the unit-tests and consistency-checks
131131
# jobs, or else weird things could happen.
132132
- name: Cache Go modules
133-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
133+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
134134
with:
135135
path: |
136136
~/.cache/go-build

0 commit comments

Comments
 (0)