diff options
author | deadprogram <[email protected]> | 2023-08-09 11:54:26 +0200 |
---|---|---|
committer | Ayke <[email protected]> | 2023-08-10 12:45:52 +0200 |
commit | ab64e215dda90243d8ae93201921b2bf7a6c9eec (patch) | |
tree | be6d833256321b51d5f010cc5d15c8c6d196df58 | |
parent | 253dbe335a0be87801b58b9df290c2e4d44a36f8 (diff) | |
download | tinygo-ab64e215dda90243d8ae93201921b2bf7a6c9eec.tar.gz tinygo-ab64e215dda90243d8ae93201921b2bf7a6c9eec.zip |
build: switch GH actions builds to use Go 1.21 final release
Signed-off-by: deadprogram <[email protected]>
-rw-r--r-- | .github/workflows/build-macos.yml | 4 | ||||
-rw-r--r-- | .github/workflows/linux.yml | 10 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 2acf285a5..487c22ff3 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -27,7 +27,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Restore LLVM source cache uses: actions/cache/restore@v3 @@ -126,7 +126,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Build TinyGo run: go install diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1e809bf84..13608a841 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -18,7 +18,7 @@ jobs: # statically linked binary. runs-on: ubuntu-latest container: - image: golang:1.21rc4-alpine + image: golang:1.21-alpine steps: - name: Install apk dependencies # tar: needed for actions/cache@v3 @@ -135,7 +135,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Install wasmtime run: | @@ -177,7 +177,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Install Node.js uses: actions/setup-node@v3 @@ -290,7 +290,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Restore LLVM source cache uses: actions/cache/restore@v3 @@ -407,7 +407,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Restore LLVM source cache uses: actions/cache/restore@v3 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 606394fc9..4c4b59fcf 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -35,7 +35,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Restore cached LLVM source uses: actions/cache/restore@v3 @@ -143,7 +143,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Download TinyGo build uses: actions/download-artifact@v2 @@ -173,7 +173,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Download TinyGo build uses: actions/download-artifact@v2 @@ -209,7 +209,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.4' + go-version: '1.21' cache: true - name: Download TinyGo build uses: actions/download-artifact@v2 |