From e4bf7743a0bfc213e237646d64373cffc73f6070 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Thu, 4 Jul 2024 11:57:25 +0200 Subject: [PATCH] CI: Allow using Node 16 actions Required after https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default --- .github/workflows/end2end.yml | 1 + .github/workflows/unit_tests_python2.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/end2end.yml b/.github/workflows/end2end.yml index 7327d876ba..e74b65cc79 100644 --- a/.github/workflows/end2end.yml +++ b/.github/workflows/end2end.yml @@ -18,6 +18,7 @@ jobs: fail-fast: false container: image: ghcr.io/easybuilders/${{ matrix.container }}-amd64 + env: {ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true} # Allow using Node16 actions steps: - name: Check out the repo uses: actions/checkout@v3 diff --git a/.github/workflows/unit_tests_python2.yml b/.github/workflows/unit_tests_python2.yml index 1b921ee83c..aa00f9a2fd 100644 --- a/.github/workflows/unit_tests_python2.yml +++ b/.github/workflows/unit_tests_python2.yml @@ -16,6 +16,7 @@ jobs: # CentOS 7.9 container that already includes Lmod & co, # see https://github.com/easybuilders/easybuild-containers image: ghcr.io/easybuilders/centos-7.9-amd64 + env: {ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true} # Allow using Node16 actions steps: - uses: actions/checkout@v3