-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #355 from k1LoW/fix-ci
Fix CI / Update go version
- Loading branch information
Showing
6 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
strategy: | ||
matrix: | ||
platform: [ubuntu-latest] | ||
go_version: [1.17] | ||
go_version: [1.18] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Set up Go ${{ matrix.go_version }} on ${{ matrix.platform }} | ||
|
@@ -29,7 +29,7 @@ jobs: | |
uses: isbang/[email protected] | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Decrypt secrets | ||
run: gpg --quiet --batch --yes --decrypt --passphrase="$GCP_CLIENT_SECRETS_PASSPHRASE" --output $GITHUB_WORKSPACE/client_secrets.json $GITHUB_WORKSPACE/client_secrets.json.gpg | ||
|
@@ -65,7 +65,7 @@ jobs: | |
strategy: | ||
matrix: | ||
platform: [windows-latest] | ||
go_version: [1.17] | ||
go_version: [1.18] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Set up Go ${{ matrix.go_version }} on ${{ matrix.platform }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,7 +155,7 @@ depsdev: | |
go install github.com/Songmu/ghch/cmd/[email protected] | ||
go install github.com/xo/[email protected] | ||
go install github.com/Songmu/gocredits/cmd/[email protected] | ||
go install github.com/securego/gosec/cmd/gosec@master | ||
go install github.com/securego/gosec/v2/cmd/gosec@latest | ||
|
||
prerelease: | ||
git pull origin --tag | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/k1LoW/tbls | ||
|
||
go 1.17 | ||
go 1.18 | ||
|
||
require ( | ||
cloud.google.com/go/bigquery v1.25.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters