Skip to content

Commit 6b9ad71

Browse files
authoredAug 13, 2024
Update go version to 1.22 (#4341)
1 parent adbedd4 commit 6b9ad71

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed
 

‎.github/workflows/release_cli_and_assets.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ jobs:
265265
- name: Set up Go
266266
uses: actions/setup-go@v5
267267
with:
268-
go-version: 1.21
268+
go-version: 1.22
269269

270270
- name: Run CLI Unit Tests
271271
run: |
@@ -390,7 +390,7 @@ jobs:
390390
- name: Set up Go
391391
uses: actions/setup-go@v5
392392
with:
393-
go-version: 1.21
393+
go-version: 1.22
394394

395395
- name: Setup BATS
396396
uses: mig4/setup-bats@v1
@@ -754,7 +754,7 @@ jobs:
754754
- name: Set up Go
755755
uses: actions/setup-go@v5
756756
with:
757-
go-version: 1.21
757+
go-version: 1.22
758758

759759
- name: Run GoReleaser
760760
uses: goreleaser/goreleaser-action@v6

‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: 1.21
26+
go-version: 1.22
2727

2828
- name: Fetching Go Cache Paths
2929
id: go-cache-paths
@@ -138,7 +138,7 @@ jobs:
138138
- name: Set up Go
139139
uses: actions/setup-go@v5
140140
with:
141-
go-version: 1.21
141+
go-version: 1.22
142142

143143
- name: Prepare for downloads
144144
id: prepare-for-downloads

‎.goreleaser.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: 2
12

23
before:
34
hooks:
@@ -58,18 +59,18 @@ release:
5859
# Visit your project's GitHub Releases page to publish this release.
5960
draft: true
6061
changelog:
61-
skip: true
62+
disable: true
6263

6364
brews:
6465
-
6566
ids:
6667
- homebrew
6768
name: steampipe@{{ .Major }}.{{ .Minor }}.{{ .Patch }}
68-
tap:
69+
repository:
6970
owner: turbot
7071
name: homebrew-tap
7172
branch: bump-brew
72-
folder: Formula
73+
directory: Formula
7374
url_template: "https://github.com/turbot/steampipe/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
7475
homepage: "https://steampipe.io/"
7576
description: "Steampipe exposes APIs and services as a high-performance relational database, giving you the ability to write SQL-based queries to explore, assess and report on dynamic data."

‎go.mod

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
module github.com/turbot/steampipe
22

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

75
replace (
86
github.com/c-bata/go-prompt => github.com/turbot/go-prompt v0.2.6-steampipe.0.0.20221028122246-eb118ec58d50
97
github.com/docker/distribution => github.com/distribution/distribution v2.7.1+incompatible
108
github.com/docker/docker => github.com/moby/moby v20.10.17+incompatible
11-
129
)
1310

1411
require (

0 commit comments

Comments
 (0)
Please sign in to comment.