diff --git a/.github/workflows/_reusable-check-api-for-breaking-changes.yml b/.github/workflows/_reusable-check-api-for-breaking-changes.yml index 34a9babf..fbdcbf05 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@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 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 cd691f60..bdd1dc53 100644 --- a/.github/workflows/_reusable-sbom-scan.yml +++ b/.github/workflows/_reusable-sbom-scan.yml @@ -36,7 +36,7 @@ jobs: fail-build: true severity-cutoff: low - name: Upload SBOM scan SARIF report as a workflow artifact - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 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 dfc3cc39..256c5397 100644 --- a/.github/workflows/_reusable-test-code.yml +++ b/.github/workflows/_reusable-test-code.yml @@ -58,7 +58,7 @@ jobs: }} - name: Run tox run: tox -v - - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 if: ${{ !cancelled() }} with: name: artifact_${{ matrix.os-name }}_${{ matrix.python-version }}_tests_and_linting @@ -86,7 +86,7 @@ jobs: run: python -m pip install tox - name: Run tox run: tox -ve tests - - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 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 04b8ee89..17cc62f2 100644 --- a/.github/workflows/_reusable-test-docs.yml +++ b/.github/workflows/_reusable-test-docs.yml @@ -50,7 +50,7 @@ jobs: type: zip filename: ${{ matrix.tox-env }}_results.zip path: .results_${{ matrix.tox-env }}/ - - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 if: ${{ !cancelled() }} with: name: artifact_${{ matrix.tox-env }} diff --git a/actions/fetch_pr_number/action.yml b/actions/fetch_pr_number/action.yml index 3ff555c8..e4284b0e 100644 --- a/actions/fetch_pr_number/action.yml +++ b/actions/fetch_pr_number/action.yml @@ -26,7 +26,7 @@ runs: steps: - name: Fetch PR number id: fetch-pr - uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0 # v7.0.0 + uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 with: script: |- const maxAttempts = ${{ inputs.max-attempts }};