Skip to content

Commit dbb2c46

Browse files
chore(deps): bump actions/setup-go from 5 to 6 (#172)
* chore(deps): bump actions/setup-go from 5 to 6 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * bump go version on ci --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yacine Fodil <105779815+yfodil@users.noreply.github.com> Co-authored-by: Yacine FODIL <yfodil@scaleway.com>
1 parent 691c3c9 commit dbb2c46

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
# Common versions
14-
GO_VERSION: '1.23'
14+
GO_VERSION: '1.25'
1515
DOCKER_BUILDX_VERSION: 'v0.8.2'
1616

1717
# Common users. We can't run a step 'if secrets.XXX != ""' but we can run a
@@ -46,7 +46,7 @@ jobs:
4646
submodules: true
4747

4848
- name: Setup Go
49-
uses: actions/setup-go@v5
49+
uses: actions/setup-go@v6
5050
with:
5151
# https://github.com/golangci/golangci-lint-action/issues/863
5252
cache: false
@@ -86,7 +86,7 @@ jobs:
8686
submodules: true
8787

8888
- name: Setup Go
89-
uses: actions/setup-go@v5
89+
uses: actions/setup-go@v6
9090
with:
9191
go-version: ${{ env.GO_VERSION }}
9292

@@ -122,7 +122,7 @@ jobs:
122122
submodules: true
123123

124124
- name: Setup Go
125-
uses: actions/setup-go@v5
125+
uses: actions/setup-go@v6
126126
with:
127127
go-version: ${{ env.GO_VERSION }}
128128

@@ -161,7 +161,7 @@ jobs:
161161
submodules: true
162162

163163
- name: Setup Go
164-
uses: actions/setup-go@v5
164+
uses: actions/setup-go@v6
165165
with:
166166
go-version: ${{ env.GO_VERSION }}
167167

@@ -216,7 +216,7 @@ jobs:
216216
run: git fetch --prune --unshallow --no-recurse-submodules
217217

218218
- name: Setup Go
219-
uses: actions/setup-go@v5
219+
uses: actions/setup-go@v6
220220
with:
221221
go-version: ${{ env.GO_VERSION }}
222222

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [created]
66

77
env:
8-
GO_VERSION: "1.23.6"
8+
GO_VERSION: "1.25"
99

1010
jobs:
1111
check-permissions:
@@ -116,7 +116,7 @@ jobs:
116116
submodules: true
117117

118118
- name: Setup Go
119-
uses: actions/setup-go@bb65d8857b81c74a671e81f935d3362a5d718e2f # v5.4.0
119+
uses: actions/setup-go@c0137caad775660c0844396c52da96e560aba63d # v5.4.0
120120
with:
121121
go-version: ${{ env.GO_VERSION }}
122122

.github/workflows/update-terraform-provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v5
1818

1919
- name: Set up Go
20-
uses: actions/setup-go@v5
20+
uses: actions/setup-go@v6
2121
with:
2222
go-version: '1.22'
2323

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ NPROCS ?= 1
3838
# to half the number of CPU cores.
3939
GO_TEST_PARALLEL := $(shell echo $$(( $(NPROCS) / 2 )))
4040

41-
GO_REQUIRED_VERSION ?= 1.23
41+
GO_REQUIRED_VERSION ?= 1.25
4242
GOLANGCILINT_VERSION ?= 1.63.4
4343
GO_STATIC_PACKAGES = $(GO_PROJECT)/cmd/provider $(GO_PROJECT)/cmd/generator
4444
GO_LDFLAGS += -X $(GO_PROJECT)/internal/version.Version=$(VERSION)

0 commit comments

Comments
 (0)