From bb3b6f81ed9aac7d9942abba5176753395197a85 Mon Sep 17 00:00:00 2001 From: Jessica Date: Mon, 28 Oct 2024 12:06:26 -0700 Subject: [PATCH 1/3] IT-3964: Add workaround for Node20 runners --- .github/workflows/main.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 5e1e214..6217ab8 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -21,6 +21,7 @@ jobs: # variables in context environments are setup in github to match branch names environment: name: ${{ github.ref_name }} + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: # use older checkout version due to https://github.com/dawidd6/action-download-artifact/issues/261 From 0a317873ba3605a6e04eea5a6c766212265f9f98 Mon Sep 17 00:00:00 2001 From: Jessica Date: Mon, 28 Oct 2024 12:48:07 -0700 Subject: [PATCH 2/3] IT-3964: Move new config to jobs.deploy.env --- .github/workflows/main.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6217ab8..dfcb575 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -21,6 +21,7 @@ jobs: # variables in context environments are setup in github to match branch names environment: name: ${{ github.ref_name }} + env: ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: From 789cecd7116fb9205ecca6dd5fcd1973ee5b8e33 Mon Sep 17 00:00:00 2001 From: Jessica Date: Mon, 28 Oct 2024 13:04:16 -0700 Subject: [PATCH 3/3] IT-3964: Move config to global level --- .github/workflows/main.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index dfcb575..ce511ee 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,6 +6,9 @@ on: push: branches: ['develop', 'staging', 'prod' ] +env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + jobs: tests: runs-on: ubuntu-latest @@ -21,8 +24,6 @@ jobs: # variables in context environments are setup in github to match branch names environment: name: ${{ github.ref_name }} - env: - ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: # use older checkout version due to https://github.com/dawidd6/action-download-artifact/issues/261