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 }}