From cab7b110c1a326e76134fcade8b4d333eae431c6 Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Sun, 24 Nov 2024 21:01:41 +0000 Subject: [PATCH] Using ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION in CI smoke build checks and in release due to ubuntu:bionic --- .github/workflows/ci.yml | 3 +++ .github/workflows/release.yml | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a5d0f7..7d0d09b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,9 @@ jobs: runs-on: ubuntu-latest env: ARCH: amd64 + # required by ubuntu:bionic + # https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true strategy: matrix: image: ${{ fromJSON(vars.SMOKE_TEST_IMAGES) }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d61d922..b585484 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -123,6 +123,9 @@ jobs: needs: build-binary-package env: ARCH: amd64 + # required by ubuntu:bionic + # https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true strategy: matrix: image: ${{ fromJSON(vars.SMOKE_TEST_IMAGES) }} @@ -149,6 +152,9 @@ jobs: publish-to-apt: env: DEB_S3_VERSION: "0.11.3" + # required by ubuntu:bionic + # https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true runs-on: ubuntu-latest environment: build needs: smoke-test-packages