File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 steps :
1414 - name : Check out code
15- uses : actions/checkout@v4
15+ uses : actions/checkout@v6
1616 - name : Build image
1717 run : docker compose build
1818 - name : Run plugin
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
Original file line number Diff line number Diff 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
88ARG package
99
1010COPY 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
3030ARG package
3131
3232COPY --from=build /app/requirements.txt /app/
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ python = "^3.9"
1414arcaflow-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 ]
2323requires = [" poetry-core>=1.0.0" ]
You can’t perform that action at this time.
0 commit comments