From 469a7fd83b834d358d710915002ae70890754cd3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 00:06:54 +0000 Subject: [PATCH 1/2] Update actions/upload-artifact action to v4 --- .github/workflows/main.yml | 6 +++--- .github/workflows/publish_release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4cd1c8d1..47c8f6f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,7 +108,7 @@ jobs: run: hatch run test-ci --cov-report xml:coverage-${{ matrix.python-version }}.xml --junitxml=test-results-${{ matrix.python-version }}.xml - name: Upload pytest test results artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 with: name: pytest-results-${{ matrix.python-version }} path: test-results-${{ matrix.python-version }}.xml @@ -116,7 +116,7 @@ jobs: if: ${{ always() }} - name: Upload coverage results artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 with: name: pytest-coverage-${{ matrix.python-version }} path: coverage-${{ matrix.python-version }}.xml @@ -186,7 +186,7 @@ jobs: run: hatch run docs:build - name: Upload coverage results artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 with: name: docs-site path: site/ diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index fa330251..1637bb7b 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -43,7 +43,7 @@ jobs: uses: ./.github/actions/build-dist - name: Upload distribution artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: name: distributions path: ./dist From 27d41a180f965e71db04344e44bb4c674c1f38e0 Mon Sep 17 00:00:00 2001 From: Patrick Lannigan Date: Mon, 18 Dec 2023 19:11:10 -0500 Subject: [PATCH 2/2] Full version tag for action --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 47c8f6f9..56c7ed81 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,7 +108,7 @@ jobs: run: hatch run test-ci --cov-report xml:coverage-${{ matrix.python-version }}.xml --junitxml=test-results-${{ matrix.python-version }}.xml - name: Upload pytest test results artifact - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: name: pytest-results-${{ matrix.python-version }} path: test-results-${{ matrix.python-version }}.xml @@ -116,7 +116,7 @@ jobs: if: ${{ always() }} - name: Upload coverage results artifact - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: name: pytest-coverage-${{ matrix.python-version }} path: coverage-${{ matrix.python-version }}.xml @@ -186,7 +186,7 @@ jobs: run: hatch run docs:build - name: Upload coverage results artifact - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: name: docs-site path: site/