Skip to content

Commit 5bf651d

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 21a632a commit 5bf651d

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
@@ -22,14 +22,14 @@ jobs:
2222
- 'stable'
2323
steps:
2424
- name: "Fetch source code"
25-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
25+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.0.0
2626

2727
- name: Install Go toolchain
28-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
28+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
2929
with:
3030
go-version: ${{ matrix.GO_VERSION }}
3131
- name: Cache Go modules
32-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
32+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3333
with:
3434
path: |
3535
~/.cache/go-build
@@ -38,7 +38,7 @@ jobs:
3838
restore-keys: |
3939
go-mod-${{ matrix.GO_VERSION }}
4040
- name: "lint"
41-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
41+
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
4242

4343
unit-tests:
4444
name: "Unit Tests"
@@ -51,18 +51,18 @@ jobs:
5151
- 'stable'
5252
steps:
5353
- name: "Fetch source code"
54-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
54+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.0.0
5555

5656
- name: Install Go toolchain
57-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
57+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
5858
with:
5959
go-version: ${{ matrix.GO_VERSION }}
6060

6161
# NOTE: This cache is shared so the following step must always be
6262
# identical across the unit-tests, e2e-tests, and consistency-checks
6363
# jobs, or else weird things could happen.
6464
- name: Cache Go modules
65-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
65+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6666
with:
6767
path: |
6868
~/.cache/go-build
@@ -75,7 +75,7 @@ jobs:
7575
go test ./...
7676
make cov
7777
- name: Upload coverage report
78-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
78+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
7979
with:
8080
path: coverage.out
8181
name: Coverage-report-${{matrix.GO_VERSION}}
@@ -95,18 +95,18 @@ jobs:
9595
- 'stable'
9696
steps:
9797
- name: "Fetch source code"
98-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
98+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.0.0
9999

100100
- name: Install Go toolchain
101-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
101+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
102102
with:
103103
go-version: ${{ matrix.GO_VERSION }}
104104

105105
# NOTE: This cache is shared so the following step must always be
106106
# identical across the unit-tests, e2e-tests, and consistency-checks
107107
# jobs, or else weird things could happen.
108108
- name: Cache Go modules
109-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
109+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
110110
with:
111111
path: |
112112
~/.cache/go-build
@@ -131,18 +131,18 @@ jobs:
131131
- 'stable'
132132
steps:
133133
- name: "Fetch source code"
134-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
134+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.0.0
135135

136136
- name: Install Go toolchain
137-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
137+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
138138
with:
139139
go-version: ${{ matrix.GO_VERSION }}
140140

141141
# NOTE: This cache is shared so the following step must always be
142142
# identical across the unit-tests and consistency-checks
143143
# jobs, or else weird things could happen.
144144
- name: Cache Go modules
145-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
145+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
146146
with:
147147
path: |
148148
~/.cache/go-build

0 commit comments

Comments
 (0)