Skip to content

Commit c5f94a0

Browse files
Update all dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8d006fc commit c5f94a0

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Build image
1717
run: docker compose build
1818
- name: Run plugin
@@ -27,7 +27,7 @@ jobs:
2727
pip install html2text
2828
html2text --ignore-images --ignore-links -b 0 htmlcov/index.html >> $GITHUB_STEP_SUMMARY
2929
- name: Upload coverage results
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
3131
with:
3232
name: coverage
3333
path: htmlcov

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG package=arcaflow_plugin_template_python
44
# STAGE 1 -- Build module dependencies and run tests
55
# The 'poetry' and 'coverage' modules are installed and verson-controlled in the
66
# quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase image to limit drift
7-
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.4.0 as build
7+
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.5.0 as build
88
ARG package
99

1010
COPY poetry.lock /app/
@@ -26,7 +26,7 @@ RUN python -m coverage run tests/test_${package}.py \
2626

2727

2828
# STAGE 2 -- Build final plugin image
29-
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.4.0
29+
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.5.0
3030
ARG package
3131

3232
COPY --from=build /app/requirements.txt /app/

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ python = "^3.9"
1414
arcaflow-plugin-sdk = "^0.14.0"
1515

1616
[tool.poetry.dev-dependencies]
17-
docformatter = "^1.5.0"
18-
autoflake = "^2.0.0"
19-
pydocstyle = "^6.1.1"
20-
black = "^24.0.0"
17+
docformatter = "1.7.5"
18+
autoflake = "2.3.1"
19+
pydocstyle = "6.3.0"
20+
black = "24.4.2"
2121

2222
[build-system]
2323
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)