From ed3ce2898618ad5d813f706a95c924cee1394819 Mon Sep 17 00:00:00 2001 From: UlrichB22 <97119703+UlrichB22@users.noreply.github.com> Date: Sat, 3 Feb 2024 20:45:56 +0100 Subject: [PATCH 1/2] Github CI workflow: update actions versions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dde6cc7ea..21c2a2f79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,9 +22,9 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.11 - name: Lint with flake8 @@ -51,9 +51,9 @@ jobs: timeout-minutes: 60 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -67,7 +67,7 @@ jobs: pytest - name: Archive test artifacts if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-artifacts-${{ matrix.os }} path: | From eb84e213612a57bed1ded32cd82f9e2929dbcbe8 Mon Sep 17 00:00:00 2001 From: UlrichB22 <97119703+UlrichB22@users.noreply.github.com> Date: Sat, 3 Feb 2024 21:10:13 +0100 Subject: [PATCH 2/2] Github CI workflow: fix artifacts name --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21c2a2f79..7fedf7ebd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,6 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test-artifacts-${{ matrix.os }} + name: test-artifacts-${{ matrix.os }}-${{ matrix.python-version }} path: | _test_artifacts