Skip to content

Commit 3399258

Browse files
authored
Update go version to 1.22 (#449)
1 parent 359a288 commit 3399258

7 files changed

+17
-17
lines changed

.github/workflows/01-powerpipe-pre-release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# this is required, check golangci-lint-action docs
4141
- uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.21'
43+
go-version: '1.22'
4444
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
4545

4646
- name: Build
@@ -118,7 +118,7 @@ jobs:
118118

119119
- uses: actions/setup-go@v5
120120
with:
121-
go-version: 1.21
121+
go-version: 1.22
122122
cache: false
123123

124124
- name: Prepare for downloads
@@ -566,7 +566,7 @@ jobs:
566566
# this is required, check golangci-lint-action docs
567567
- uses: actions/setup-go@v5
568568
with:
569-
go-version: "1.21"
569+
go-version: "1.22"
570570
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
571571

572572
- name: Download Dashboard UI Assets Artifact

.github/workflows/02-powerpipe-release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# this is required, check golangci-lint-action docs
6161
- uses: actions/setup-go@v5
6262
with:
63-
go-version: '1.21'
63+
go-version: '1.22'
6464
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
6565

6666
- name: Build
@@ -138,7 +138,7 @@ jobs:
138138

139139
- uses: actions/setup-go@v5
140140
with:
141-
go-version: 1.21
141+
go-version: 1.22
142142
cache: false
143143

144144
- name: Prepare for downloads
@@ -593,7 +593,7 @@ jobs:
593593
# this is required, check golangci-lint-action docs
594594
- uses: actions/setup-go@v5
595595
with:
596-
go-version: "1.21"
596+
go-version: "1.22"
597597
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
598598

599599
- name: Download Dashboard UI Assets Artifact

.github/workflows/10-test-lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# this is required, check golangci-lint-action docs
2929
- uses: actions/setup-go@v5
3030
with:
31-
go-version: '1.21'
31+
go-version: '1.22'
3232
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
3333

3434
- name: golangci-lint

.github/workflows/11-test-acceptance.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# this is required, check golangci-lint-action docs
3333
- uses: actions/setup-go@v5
3434
with:
35-
go-version: '1.21'
35+
go-version: '1.22'
3636
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
3737

3838
- name: Build
@@ -94,7 +94,7 @@ jobs:
9494

9595
- uses: actions/setup-go@v5
9696
with:
97-
go-version: 1.21
97+
go-version: 1.22
9898
cache: false
9999

100100
- name: Prepare for downloads

.goreleaser.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
version: 2
2+
13
builds:
24
- id: powerpipe-linux-arm64
35
binary: powerpipe
@@ -77,7 +79,7 @@ checksum:
7779
name_template: "checksums.txt"
7880

7981
changelog:
80-
skip: true
82+
disable: true
8183

8284
release:
8385
prerelease: auto
@@ -90,7 +92,7 @@ brews:
9092
owner: turbot
9193
name: homebrew-tap
9294
branch: powerpipe-brew
93-
folder: Formula
95+
directory: Formula
9496
url_template: "https://github.com/turbot/powerpipe/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
9597
homepage: "https://powerpipe.io/"
9698
description: "Dashboards for DevOps. Visualize cloud configurations. Assess security posture against a massive library of benchmarks. Build custom dashboards with code."

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OUTPUT_DIR?=/usr/local/bin
22
PACKAGE_NAME := github.com/turbot/powerpipe
3-
GOLANG_CROSS_VERSION ?= v1.21.5
3+
GOLANG_CROSS_VERSION ?= v1.22.4
44

55
.PHONY: build
66
build:
@@ -30,7 +30,7 @@ release-dry-run:
3030
-v `pwd`/../pipe-fittings:/go/src/pipe-fittings \
3131
-w /go/src/powerpipe \
3232
ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
33-
--clean --skip-validate --skip-publish --snapshot --rm-dist
33+
--clean --skip=validate --skip=publish --snapshot
3434

3535

3636
.PHONY: release
@@ -48,7 +48,7 @@ release:
4848
-v `pwd`/../pipe-fittings:/go/src/pipe-fittings \
4949
-w /go/src/powerpipe \
5050
ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
51-
release --clean --skip-validate
51+
release --clean --skip=validate
5252

5353
# Run the test generator to create the acceptance tests(update the paths in main function in tests/acceptance/test_generator/generate.go)
5454
build-tests:

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/turbot/powerpipe
22

3-
go 1.21.0
4-
5-
toolchain go1.21.3
3+
go 1.22.4
64

75
//replace github.com/turbot/pipe-fittings => ../pipe-fittings
86

0 commit comments

Comments
 (0)