From 4f69f46c4935f22768699ec078e568ec556d7712 Mon Sep 17 00:00:00 2001 From: Rasmus Selsmark Date: Mon, 16 Sep 2024 21:00:02 +0200 Subject: [PATCH] Updated to actions/upload-artifact@v4.4.0 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3ad2f789..8974e87c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,14 +18,14 @@ jobs: run: docker compose run web flake8 - name: Test run: docker compose run web ./manage.py test - - uses: actions/upload-artifact@v2.1.4 + - uses: actions/upload-artifact@v4.4.0 if: always() with: name: selenium-screens path: ./test-screens - name: Create and upload UML diagram run: mkdir -p UML && docker compose run web ./manage.py graph_models members -o UML/UML_diagram.png - - uses: actions/upload-artifact@v2.1.4 + - uses: actions/upload-artifact@v4.4.0 with: name: UML_diagram.png path: UML