From e58adc5fa81e3a946f95ff0648fdc2c6db00a610 Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Wed, 18 Jan 2023 15:34:14 +0000 Subject: [PATCH 1/3] gh: bump code version --- .github/workflows/tests.yml | 4 ++-- VERSION | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 157b11a..8d3fd16 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-20.04 container: - image: faasm/cpython:0.2.1 + image: faasm/cpython:0.2.2 steps: - name: "Fetch code" uses: actions/checkout@v3 @@ -41,7 +41,7 @@ jobs: REDIS_QUEUE_HOST: redis REDIS_STATE_HOST: redis container: - image: faasm/cpython:0.2.1 + image: faasm/cpython:0.2.2 services: redis: image: redis diff --git a/VERSION b/VERSION index 0c62199..ee1372d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.1 +0.2.2 From 435b142d1fd3afd48eaa16f4e43d428c524f3900 Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Wed, 18 Jan 2023 15:34:42 +0000 Subject: [PATCH 2/3] docker: bump cpp-sysroot version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c4a2fb3..87e2be7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM faasm/cpp-sysroot:0.2.0 +FROM faasm/cpp-sysroot:0.2.1 ARG FAASM_PYTHON_VERSION SHELL ["/bin/bash", "-c"] From effd525bf7c211e7b8777ff1d40275218e5e0d0f Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Wed, 18 Jan 2023 15:36:23 +0000 Subject: [PATCH 3/3] gha: use ubuntu-latest around --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8d3fd16..61cc462 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: formatting: if: github.event.pull_request.draft == false - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest container: image: faasm/cpython:0.2.2 steps: @@ -35,7 +35,7 @@ jobs: build: if: github.event.pull_request.draft == false - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: HOST_TYPE: ci REDIS_QUEUE_HOST: redis