Skip to content

Commit f079ab4

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

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: Build image
1515
run: docker compose build
1616
- name: Run plugin

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG package=arcaflow_plugin_uperf
33
# STAGE 1 -- Build module dependencies and run tests
44
# The 'poetry' and 'coverage' modules are installed and verson-controlled in the
55
# quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase image to limit drift
6-
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.4.2 as build
6+
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.5.0 as build
77
ARG package
88
RUN dnf -y install lksctp-tools-devel && dnf clean all \
99
&& dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm \
@@ -28,7 +28,7 @@ RUN python -m coverage run tests/test_${package}.py \
2828

2929

3030
# STAGE 2 -- Build final plugin image
31-
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.4.2
31+
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.5.0
3232
ARG package
3333
RUN dnf -y install lksctp-tools-devel && dnf clean all \
3434
&& dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm \

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ arcaflow-plugin-sdk = "^0.14.0"
1313

1414

1515
[tool.poetry.dev-dependencies]
16-
black = "^24.0.0"
17-
autoflake = "^2.0.0"
18-
pydocstyle = "^6.1.1"
16+
black = "24.10.0"
17+
autoflake = "2.3.1"
18+
pydocstyle = "6.3.0"
1919

2020
[build-system]
2121
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)