From 5480cb40b4fc877a3872cd3b236f579bdf4f651c Mon Sep 17 00:00:00 2001 From: Owais Kazi Date: Wed, 15 Jan 2025 15:14:04 -0800 Subject: [PATCH] Fixed the CI action failures due to AL2 with older glibc (#999) Signed-off-by: Owais --- .github/workflows/test_security.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_security.yml b/.github/workflows/test_security.yml index d3db98a00..bbf41fa6d 100644 --- a/.github/workflows/test_security.yml +++ b/.github/workflows/test_security.yml @@ -9,8 +9,6 @@ on: pull_request: types: [opened, synchronize, reopened] -env: - ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true jobs: Get-CI-Image-Tag: @@ -31,13 +29,16 @@ jobs: # this image tag is subject to change as more dependencies and updates will arrive over time image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }} # need to switch to root so that github actions can install runner binary on container without permission issues. - options: --user root + options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }} steps: + - name: Run start commands + run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }} + - name: Checkout Flow Framework - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java ${{ matrix.java }} - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: ${{ matrix.java }}