# HG changeset patch # User John Rouillard # Date 1676504160 18000 # Node ID 572d1a9f875cfb90127858502976b223a92059ff # Parent f72a16661ac6579dffb0f9916f605ce629621290 Try to force update of base image. The current python:3-alpine image passes security checks, but it's not passing in ci. diff -r f72a16661ac6 -r 572d1a9f875c .github/workflows/anchore.yml --- a/.github/workflows/anchore.yml Wed Feb 15 17:46:41 2023 -0500 +++ b/.github/workflows/anchore.yml Wed Feb 15 18:36:00 2023 -0500 @@ -37,6 +37,8 @@ steps: - name: Checkout the code uses: actions/checkout@v3 + - name: Update base image + run: docker pull python:3-alpine - name: Build the Docker image run: docker build . --file scripts/Docker/Dockerfile --tag localbuild/testimage:latest - name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled