ci: update go (1.19.7 -> 1.19.9, 1.20.2 -> 1.20.4)
This commit is contained in:
parent
b665c943a2
commit
4b66a222cd
31
.github/workflows/push.yaml
vendored
31
.github/workflows/push.yaml
vendored
|
@ -16,44 +16,19 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04]
|
os: [ubuntu-20.04]
|
||||||
go: ["1.19.7", "1.20.2"]
|
go: ["1.19.9", "1.20.4"]
|
||||||
goos: [linux]
|
goos: [linux]
|
||||||
goarch: [amd64, arm64]
|
goarch: [amd64, arm64]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v3
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
- name: Code Checkout
|
- name: Code checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Gather environment variables
|
|
||||||
id: env
|
|
||||||
run: |
|
|
||||||
printf "Go Executable Path: $(which go)\n"
|
|
||||||
printf "Go Version: $(go version)\n"
|
|
||||||
printf "\n\nGo Environment:\n\n"
|
|
||||||
go env
|
|
||||||
printf "\n\nSystem Environment:\n\n"
|
|
||||||
env
|
|
||||||
printf "Git Version: $(git version)\n\n"
|
|
||||||
echo "version_tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
|
|
||||||
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
||||||
echo "go_cache=$(go env GOCACHE)" >> $GITHUB_OUTPUT
|
|
||||||
echo "go_mod_cache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Build Cache
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-go-
|
|
||||||
path: |
|
|
||||||
${{ steps.env.outputs.go_cache }}
|
|
||||||
${{ steps.env.outputs.go_mod_cache }}
|
|
||||||
|
|
||||||
- name: go mod download
|
- name: go mod download
|
||||||
env:
|
env:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
|
|
4
.github/workflows/release.yaml
vendored
4
.github/workflows/release.yaml
vendored
|
@ -15,9 +15,9 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v3
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: "1.19.7"
|
go-version: "1.19.9"
|
||||||
|
|
||||||
- name: Build release binaries
|
- name: Build release binaries
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user