diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fe3ac98..62298c8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 - name: Set up Python uses: actions/setup-python@v4 with: diff --git a/Dockerfile b/Dockerfile index de696ad..a08f474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG package=arcaflow_plugin_wait # STAGE 1 -- Build module dependencies and run tests # The 'poetry' and 'coverage' modules are installed and verson-controlled in the # quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase image to limit drift -FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.2.0@sha256:7b72424c08c51d1bb6215fac0e002fd9d406b6321dcd74233ea53ec653280be8 as build +FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.3.1@sha256:9767207e2de6597c4d6bd2345d137ac03661326734d4e6824840d270d3415e12 as build ARG package COPY poetry.lock /app/ @@ -26,7 +26,7 @@ RUN python -m coverage run tests/test_${package}.py \ # STAGE 2 -- Build final plugin image -FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.2.0@sha256:a57baf7714d13b4fb0a01551990eed927b1f1251cd502ad01bcb05ffeeff31d8 +FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.3.1@sha256:0e9384416ad5dd8810c410a87c283ca29a368fc85592378b85261fce5f9ecbeb ARG package COPY --from=build /app/requirements.txt /app/