Skip to content

Commit

Permalink
Upgrades go version to 1.21. Closes #3763
Browse files Browse the repository at this point in the history
  • Loading branch information
binaek authored Aug 25, 2023
1 parent d9cc25e commit 3b2cdd1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_cli_and_assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21

- name: Run CLI Unit Tests
run: |
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21

- name: Setup BATS
uses: mig4/setup-bats@v1
Expand Down Expand Up @@ -694,7 +694,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21

- name: Fetching Go Cache Paths
id: go-cache-paths
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21

- name: Prepare for downloads
id: prepare-for-downloads
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/turbot/steampipe

go 1.19
go 1.21

require (
github.com/Machiel/slugify v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/constants/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (
// constants for installing db and fdw images
const (
DatabaseVersion = "14.2.0"
FdwVersion = "1.8.0-rc.3"
FdwVersion = "1.8.0-dev.4"

// PostgresImageRef is the OCI Image ref for the database binaries
PostgresImageRef = "us-docker.pkg.dev/steampipe/steampipe/db:14.2.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/test_files/dashboard.bats
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ load "$LIB_BATS_SUPPORT/load.bash"

# run the script to evaluate the patch
# returns nothing if there is no diff(except start_time, end_time & search_path)
diff=$($FILE_PATH/test_files/json_patch.sh $output)
diff=$($FILE_PATH/json_patch.sh $output)
echo $diff
rm -f test.sps

Expand Down

0 comments on commit 3b2cdd1

Please sign in to comment.