From f59bed4f3edcdc7db69a2a5ea465b522c243e525 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Wed, 28 Feb 2024 14:40:43 -0800 Subject: [PATCH] chore(*) bump TinyGo version and release image Go version --- .github/workflows/job-unit-tests.yml | 2 +- .github/workflows/job-valgrind-tests.yml | 2 +- assets/release/Dockerfiles/Dockerfile.ubuntu-20.04 | 4 ++-- assets/release/Dockerfiles/Dockerfile.ubuntu-22.04 | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/job-unit-tests.yml b/.github/workflows/job-unit-tests.yml index c33c80e4a..1cd6cd605 100644 --- a/.github/workflows/job-unit-tests.yml +++ b/.github/workflows/job-unit-tests.yml @@ -100,7 +100,7 @@ jobs: if: ${{ !env.ACT }} uses: acifani/setup-tinygo@v2 with: - tinygo-version: 0.27.0 + tinygo-version: 0.31.1 - name: Setup Node.js uses: actions/setup-node@v4 with: diff --git a/.github/workflows/job-valgrind-tests.yml b/.github/workflows/job-valgrind-tests.yml index 928ef37a0..e6e28a40a 100644 --- a/.github/workflows/job-valgrind-tests.yml +++ b/.github/workflows/job-valgrind-tests.yml @@ -99,7 +99,7 @@ jobs: if: ${{ !env.ACT }} uses: acifani/setup-tinygo@v2 with: - tinygo-version: 0.27.0 + tinygo-version: 0.31.1 - name: Setup Node.js uses: actions/setup-node@v4 with: diff --git a/assets/release/Dockerfiles/Dockerfile.ubuntu-20.04 b/assets/release/Dockerfiles/Dockerfile.ubuntu-20.04 index f05bf74d6..d98c7d494 100644 --- a/assets/release/Dockerfiles/Dockerfile.ubuntu-20.04 +++ b/assets/release/Dockerfiles/Dockerfile.ubuntu-20.04 @@ -1,8 +1,8 @@ FROM ubuntu:20.04 COPY . /ngx_wasm_module -ARG GOLANG_VERSION=1.19.5 -ARG TINYGO_VERSION=0.27.0 +ARG GOLANG_VERSION=1.21.7 +ARG TINYGO_VERSION=0.31.1 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get install -y \ diff --git a/assets/release/Dockerfiles/Dockerfile.ubuntu-22.04 b/assets/release/Dockerfiles/Dockerfile.ubuntu-22.04 index cef461e0d..c3b9a8e4f 100644 --- a/assets/release/Dockerfiles/Dockerfile.ubuntu-22.04 +++ b/assets/release/Dockerfiles/Dockerfile.ubuntu-22.04 @@ -3,8 +3,8 @@ COPY . /ngx_wasm_module ARG GCC_VERSION=12 ARG CLANG_VERSION=15 -ARG GOLANG_VERSION=1.19.5 -ARG TINYGO_VERSION=0.27.0 +ARG GOLANG_VERSION=1.21.7 +ARG TINYGO_VERSION=0.31.1 ARG NODEJS_VERSION=20.9.0 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && \