From 7109fc897805f8a7b760b794b17b5a51763c1ad7 Mon Sep 17 00:00:00 2001 From: Jimmy Christensen Date: Wed, 10 Jul 2024 20:16:05 +0200 Subject: [PATCH] Fix CI/CD checks that uses old docker images (#1405) --- .github/workflows/testing-pipeline.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/testing-pipeline.yml b/.github/workflows/testing-pipeline.yml index 32d367689..c3816db57 100644 --- a/.github/workflows/testing-pipeline.yml +++ b/.github/workflows/testing-pipeline.yml @@ -11,6 +11,8 @@ jobs: name: Run Python Unit Tests (CY2022) runs-on: ubuntu-latest container: aswf/ci-opencue:2022 + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - uses: actions/checkout@v3 - name: Run Python Tests @@ -21,6 +23,8 @@ jobs: runs-on: ubuntu-latest container: image: aswf/ci-opencue:2022 + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - uses: actions/checkout@v3 - name: Build with Gradle @@ -53,6 +57,8 @@ jobs: name: Run Python Unit Tests using Python2 runs-on: ubuntu-latest container: aswf/ci-opencue:2019 + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - uses: actions/checkout@v3 - name: Run Python Tests @@ -71,6 +77,8 @@ jobs: name: Lint Python Code runs-on: ubuntu-latest container: aswf/ci-opencue:2022 + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - uses: actions/checkout@v3 - name: Lint Python Code