From bf4fcfb34870bc84c1c1e06619618eab593a7760 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 04:15:55 +0000 Subject: [PATCH] Update all dependencies Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yaml | 4 ++-- Dockerfile | 4 ++-- poetry.lock | 2 +- pyproject.toml | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f17680c..1afcc64 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build image run: docker compose build - name: Run plugin @@ -27,7 +27,7 @@ jobs: pip install html2text html2text --ignore-images --ignore-links -b 0 htmlcov/index.html >> $GITHUB_STEP_SUMMARY - name: Upload coverage results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage path: htmlcov diff --git a/Dockerfile b/Dockerfile index 8ec625e..632b138 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG package=arcaflow_plugin_template_python # 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.4.0 as build +FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.5.0 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.4.0 +FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.5.0 ARG package COPY --from=build /app/requirements.txt /app/ diff --git a/poetry.lock b/poetry.lock index 15e2a5e..a01cfa3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -471,4 +471,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "e9f33e482f81c5d8c3bb518e123595f3e69a536f5d0a090100d473a05374deda" +content-hash = "136a570b3ecbef85639b2e90489f39b93586e0d72a70a854f66275f28b26d41b" diff --git a/pyproject.toml b/pyproject.toml index 2f969f7..eebd23c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,10 +14,10 @@ python = "^3.9" arcaflow-plugin-sdk = "^0.14.0" [tool.poetry.dev-dependencies] -docformatter = "^1.5.0" -autoflake = "^2.0.0" -pydocstyle = "^6.1.1" -black = "^24.0.0" +docformatter = "1.7.5" +autoflake = "2.3.1" +pydocstyle = "6.3.0" +black = "24.4.2" [build-system] requires = ["poetry-core>=1.0.0"]