File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 steps :
1212 - name : Check out code
13- uses : actions/checkout@v4
13+ uses : actions/checkout@v6
1414 - name : Build image
1515 run : docker compose build
1616 - name : Run plugin
2525 pip install html2text
2626 html2text --ignore-images --ignore-links -b 0 htmlcov/index.html >> $GITHUB_STEP_SUMMARY
2727 - name : Upload coverage results
28- uses : actions/upload-artifact@v4
28+ uses : actions/upload-artifact@v7
2929 with :
3030 name : coverage
3131 path : htmlcov
Original file line number Diff line number Diff 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
77ARG package
88RUN 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
3232ARG package
3333RUN 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 \
Original file line number Diff line number Diff 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 ]
2121requires = [" poetry-core>=1.0.0" ]
You can’t perform that action at this time.
0 commit comments