Skip to content

Commit 7b432b7

Browse files
[chore] : Bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3df4ab11eba7bda6032a0b82a6bb43b11571feac` | `71cf2267d89c5cb81562390fa70a37fa40b1305e` | | [actions/setup-go](https://github.com/actions/setup-go) | `4.1.0` | `6.0.0` | | [actions/cache](https://github.com/actions/cache) | `4.2.0` | `4.3.0` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8.0.0` | `9.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.3` | `5.0.0` | Updates `actions/checkout` from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to 71cf2267d89c5cb81562390fa70a37fa40b1305e - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@3df4ab1...71cf226) Updates `actions/setup-go` from 4.1.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@93397be...4469467) Updates `actions/cache` from 4.2.0 to 4.3.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@1bd1e32...0057852) Updates `golangci/golangci-lint-action` from 8.0.0 to 9.0.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@4afd733...0a35821) Updates `actions/upload-artifact` from 4.3.3 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@6546280...330a01c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 71cf2267d89c5cb81562390fa70a37fa40b1305e dependency-type: direct:production dependency-group: actions - dependency-name: actions/setup-go dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 91f9f87 commit 7b432b7

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/check.yml

Lines changed: 14 additions & 14 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@71cf2267d89c5cb81562390fa70a37fa40b1305e # v4.0.0
2323

2424
- name: Install Go toolchain
25-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
25+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3030
with:
3131
path: |
3232
~/.cache/go-build
@@ -35,7 +35,7 @@ jobs:
3535
restore-keys: |
3636
go-mod-${{ matrix.GO_VERSION }}
3737
- name: "lint"
38-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
38+
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
3939

4040
unit-tests:
4141
name: "Unit Tests"
@@ -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@71cf2267d89c5cb81562390fa70a37fa40b1305e # v4.0.0
4949

5050
- name: Install Go toolchain
51-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
51+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
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@330a01c490aca151604b8cf639adc76d48f6c5d4
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@71cf2267d89c5cb81562390fa70a37fa40b1305e # v4.0.0
9090

9191
- name: Install Go toolchain
92-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
92+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
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@71cf2267d89c5cb81562390fa70a37fa40b1305e # v4.0.0
123123

124124
- name: Install Go toolchain
125-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
125+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
134134
with:
135135
path: |
136136
~/.cache/go-build

0 commit comments

Comments
 (0)