From 0acfd197a7a60487e92ad646cca9a143fe839aec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 15:54:25 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4.4.2 to 4.4.3 (#334) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.2 to 4.4.3.
Release notes

Sourced from actions/upload-artifact's releases.

v4.4.3

What's Changed

Full Changelog: https://github.com/actions/upload-artifact/compare/v4.4.2...v4.4.3

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=4.4.2&new-version=4.4.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/deps-update.yml | 2 +- .github/workflows/docsite.yml | 2 +- .github/workflows/ossf-scorecard.yml | 2 +- .github/workflows/validate.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deps-update.yml b/.github/workflows/deps-update.yml index 13201785..9e892640 100644 --- a/.github/workflows/deps-update.yml +++ b/.github/workflows/deps-update.yml @@ -64,7 +64,7 @@ jobs: git diff --staged --patch > "${{ runner.temp }}/go.diff.patch" - name: Upload Artifact - uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: Patches path: ${{ runner.temp }}/go.diff.patch diff --git a/.github/workflows/docsite.yml b/.github/workflows/docsite.yml index 6c966e2c..7ba7fdb7 100644 --- a/.github/workflows/docsite.yml +++ b/.github/workflows/docsite.yml @@ -35,7 +35,7 @@ jobs: # identical to hugo's. run: go -C ./docs run github.com/gohugoio/hugo --minify --enableGitInfo --environment=gh-pages - name: Upload Artifact - uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: site path: docs/public/ diff --git a/.github/workflows/ossf-scorecard.yml b/.github/workflows/ossf-scorecard.yml index 266570fb..fcb3361c 100644 --- a/.github/workflows/ossf-scorecard.yml +++ b/.github/workflows/ossf-scorecard.yml @@ -35,7 +35,7 @@ jobs: # Upload the results as artifacts. - name: "Upload artifact" - uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 8410f47f..600969f4 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -86,7 +86,7 @@ jobs: git diff --staged --patch --exit-code > .repo.patch || echo 'result=true' >> "${GITHUB_OUTPUT}" - name: Upload patch if: github.event_name != 'push' && steps.is-tree-dirty.outputs.result == 'true' - uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: if-no-files-found: error include-hidden-files: true @@ -248,7 +248,7 @@ jobs: set -euo pipefail go test -bench=. -timeout=1h -run=^$ . | tee ${{ runner.temp }}/benchmarks.txt - name: Upload benchmark report (raw) - uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: if-no-files-found: error name: Benchmark Report