From 620a747ab04d5919d41f3c1033051c1fec9c6d90 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 20:31:32 +0000 Subject: [PATCH] chore(gh-actions-deps): update actions/upload-artifact action to v4.4.3 in all dependant reusable workflows --- .../workflows/_reusable-check-api-for-breaking-changes.yml | 2 +- .github/workflows/_reusable-sbom-scan.yml | 2 +- .github/workflows/_reusable-test-code.yml | 4 ++-- .github/workflows/_reusable-test-docs.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/_reusable-check-api-for-breaking-changes.yml b/.github/workflows/_reusable-check-api-for-breaking-changes.yml index d5df799..7461d03 100644 --- a/.github/workflows/_reusable-check-api-for-breaking-changes.yml +++ b/.github/workflows/_reusable-check-api-for-breaking-changes.yml @@ -33,7 +33,7 @@ jobs: griffe check --format=verbose --against="$(git rev-parse origin/main)" --search=src "$PACKAGE_NAME" 2>&1 | tee -a breaking_changes.md - name: Finish writing summary file run: echo "\`\`\`" >> breaking_changes.md - - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 with: name: breaking_changes path: breaking_changes.md diff --git a/.github/workflows/_reusable-sbom-scan.yml b/.github/workflows/_reusable-sbom-scan.yml index c7765bb..6de775a 100644 --- a/.github/workflows/_reusable-sbom-scan.yml +++ b/.github/workflows/_reusable-sbom-scan.yml @@ -45,7 +45,7 @@ jobs: severity-cutoff: low - name: Upload SBOM scan SARIF report as a workflow artifact if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.scan.outcome) }} - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 with: name: sarif_artifact path: ${{ steps.scan.outputs.sarif }} diff --git a/.github/workflows/_reusable-test-code.yml b/.github/workflows/_reusable-test-code.yml index e2c63eb..078e2a5 100644 --- a/.github/workflows/_reusable-test-code.yml +++ b/.github/workflows/_reusable-test-code.yml @@ -61,7 +61,7 @@ jobs: }} - name: Run tox run: tox -v - - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 if: ${{ !cancelled() }} with: name: artifact_${{ matrix.os-name }}_${{ matrix.python-version }}_tests_and_linting @@ -94,7 +94,7 @@ jobs: - name: Run tox id: run-tox run: tox -ve tests - - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 if: ${{ !cancelled() }} with: name: artifact_${{ matrix.os-name }}_tests diff --git a/.github/workflows/_reusable-test-docs.yml b/.github/workflows/_reusable-test-docs.yml index 8b6d40f..d2d0ce3 100644 --- a/.github/workflows/_reusable-test-docs.yml +++ b/.github/workflows/_reusable-test-docs.yml @@ -49,7 +49,7 @@ jobs: with: dest: ${{ matrix.tox-env }}_results.zip files: .results_${{ matrix.tox-env }}/ - - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 if: ${{ !cancelled() }} with: name: artifact_${{ matrix.tox-env }}