Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
ci: bump go
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Apr 12, 2023
1 parent 60c5480 commit 7168dd2
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ env:
# https://go.dev/dl/
#
# latest stable version
GOVERSION: 1.20.2
GOVERSION: 1.20.3
# SHA256 Checksum for "Source" Kind file
GOSHA256: 4d0e2850d197b4ddad3bdb0196300179d095bb3aefd4dfbc3b36702c3728f8ab
GOSHA256: e447b498cde50215c4f7619e5124b0fc4e25fb5d16ea47271c47f278e7aa763a

jobs:
run:
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.20.x"
go-version: "1.20.3"
cache: false

- name: Go env
Expand Down
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ set -o pipefail

OUTPUT="_out/"

VERSION=1.20.2
HASH=4d0e2850d197b4ddad3bdb0196300179d095bb3aefd4dfbc3b36702c3728f8ab
VERSION=1.20.3
HASH=e447b498cde50215c4f7619e5124b0fc4e25fb5d16ea47271c47f278e7aa763a
FILE="go${VERSION}.src.tar.gz"

mkdir -p "${OUTPUT}"
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GOROOT_BOOTSTRAP="$(realpath _out/go-linux-riscv64-bootstrap)"
set -e
set -o pipefail

ver="${GOVERSION:-1.20.2}"
ver="${GOVERSION:-1.20.3}"

if [ ! -d "${GOROOT_BOOTSTRAP}" ]
then
Expand Down
2 changes: 1 addition & 1 deletion checksums.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e
set -o pipefail

ver="${GOVERSION:-1.20.2}"
ver="${GOVERSION:-1.20.3}"
archive="go${ver}.linux-riscv64.tar.gz"
bootstrap=go-linux-riscv64-bootstrap.tbz
src=go${ver}.src.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e
set -o pipefail

ver="${GOVERSION:-1.20.2}"
ver="${GOVERSION:-1.20.3}"
archive="go${ver}.linux-riscv64.tar.gz"
bootstrap=go-linux-riscv64-bootstrap.tbz
src=go${ver}.src.tar.gz
Expand Down

0 comments on commit 7168dd2

Please sign in to comment.