Skip to content

Commit 9bcbc05

Browse files
authored
bump go version in github actions (#162)
1 parent 14fd941 commit 9bcbc05

File tree

5 files changed

+26
-8
lines changed

5 files changed

+26
-8
lines changed

.github/workflows/build.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: build
22

3+
env:
4+
GO_VERSION: 1.19
5+
36
on:
47
push:
58

@@ -19,7 +22,7 @@ jobs:
1922
- name: Set up Go
2023
uses: actions/setup-go@v3
2124
with:
22-
go-version: 1.18
25+
go-version: ${{ env.GO_VERSION }}
2326
- name: Run GoReleaser
2427
uses: goreleaser/goreleaser-action@v3
2528
with:
@@ -37,7 +40,7 @@ jobs:
3740
- name: Set up Go
3841
uses: actions/setup-go@v3
3942
with:
40-
go-version: 1.17
43+
go-version: ${{ env.GO_VERSION }}
4144
- name: Build
4245
uses: goreleaser/goreleaser-action@v3
4346
with:
@@ -54,7 +57,7 @@ jobs:
5457
- name: Set up Go
5558
uses: actions/setup-go@v3
5659
with:
57-
go-version: 1.17
60+
go-version: ${{ env.GO_VERSION }}
5861
- name: Build
5962
uses: goreleaser/goreleaser-action@v3
6063
with:

.github/workflows/codeql-analysis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: "CodeQL"
22

3+
env:
4+
GO_VERSION: 1.19
5+
36
on:
47
push:
58
branches: [ main ]
@@ -37,6 +40,12 @@ jobs:
3740
# Prefix the list here with "+" to use these queries and those in the config file.
3841
# queries: ./path/to/local/query, your-org/your-repo/queries@main
3942

43+
- name: Set up Go
44+
uses: actions/setup-go@v1
45+
with:
46+
go-version: ${{ env.GO_VERSION }}
47+
id: go
48+
4049
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4150
- name: Autobuild
4251
uses: github/codeql-action/autobuild@v2

.github/workflows/release.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Release
22

3+
env:
4+
GO_VERSION: 1.19
5+
36
on:
47
push:
58
branches:
@@ -25,7 +28,7 @@ jobs:
2528
- name: Set up Go
2629
uses: actions/setup-go@v3
2730
with:
28-
go-version: 1.18
31+
go-version: ${{ env.GO_VERSION }}
2932
- name: Get Latest Release
3033
id: latest_version
3134
uses: pozetroninc/github-action-get-latest-release@master
@@ -60,7 +63,7 @@ jobs:
6063
- name: Set up Go
6164
uses: actions/setup-go@v3
6265
with:
63-
go-version: 1.17
66+
go-version: ${{ env.GO_VERSION }}
6467
- name: Get Latest Release
6568
id: latest_version
6669
uses: pozetroninc/github-action-get-latest-release@master
@@ -94,7 +97,7 @@ jobs:
9497
- name: Set up Go
9598
uses: actions/setup-go@v3
9699
with:
97-
go-version: 1.17
100+
go-version: ${{ env.GO_VERSION }}
98101
- name: Get Latest Release
99102
id: latest_version
100103
uses: pozetroninc/github-action-get-latest-release@master

.github/workflows/validation.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ on: [push, pull_request]
33
env:
44
GO111MODULE: "on"
55
PROJECTNAME: "extendeddaemonset"
6+
GO_VERSION: 1.19
67
jobs:
78
build:
89
runs-on: ubuntu-latest
910
steps:
1011
- name: Set up Go
1112
uses: actions/setup-go@v1
1213
with:
13-
go-version: 1.18
14+
go-version: ${{ env.GO_VERSION }}
1415
id: go
1516
- name: Install required packages
1617
uses: mstksg/get-package@v1
@@ -45,7 +46,7 @@ jobs:
4546
- name: Set up Go
4647
uses: actions/setup-go@v1
4748
with:
48-
go-version: 1.18
49+
go-version: ${{ env.GO_VERSION }}
4950
id: go
5051
- name: Install required packages
5152
uses: mstksg/get-package@v1

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,5 @@ tags
8585
.history
8686
# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
8787
/vendor
88+
# GoLand
89+
.idea

0 commit comments

Comments
 (0)