From 7d8d172beff0c3c87019b68f4014d8ba57f95ece Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 02:49:19 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 (#3060) 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 3 to 4.
Release notes

Sourced from actions/upload-artifact's releases.

v4.0.0

What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.

For more information, see the @​actions/artifact documentation.

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v3...v4.0.0

v3.1.3

What's Changed

Full Changelog: https://github.com/actions/upload-artifact/compare/v3...v3.1.3

v3.1.2

v3.1.1

v3.1.0

What's Changed

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=3&new-version=4)](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/_elixir.yml | 4 ++-- .github/workflows/_rust.yml | 4 ++-- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_elixir.yml b/.github/workflows/_elixir.yml index 8b9854033..7b5cf396b 100644 --- a/.github/workflows/_elixir.yml +++ b/.github/workflows/_elixir.yml @@ -334,7 +334,7 @@ jobs: --no-owner - name: Upload main branch DB dump if: contains(github.ref, env.MAIN_BRANCH) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: db-dump path: elixir/apps/domain/priv/repo/structure.sql @@ -503,7 +503,7 @@ jobs: if: ${{ github.event.pull_request.head.repo.full_name == github.repository && always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: screenshots path: elixir/apps/web/screenshots diff --git a/.github/workflows/_rust.yml b/.github/workflows/_rust.yml index 14f48a85f..f33197fe4 100644 --- a/.github/workflows/_rust.yml +++ b/.github/workflows/_rust.yml @@ -98,12 +98,12 @@ jobs: cp "target/release/Firezone Windows Client.exe" "windows-client-x64.exe" - name: Save Windows client - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows-client-x64 path: ${{ github.workspace }}/rust/windows-client-x64.exe - name: Save Windows installer - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows-client-x64-msi path: ${{ github.workspace }}/rust/target/release/bundle/msi diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index c21f4cf81..3973d7e25 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -226,7 +226,7 @@ jobs: digest="${{ steps.build.outputs.digest }}" touch "/tmp/digests/${{ matrix.name.image_name }}/${digest#sha256:}" - name: Upload digest - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: digests path: /tmp/digests/* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a9176f76..23857b239 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -252,7 +252,7 @@ jobs: cat /tmp/iperf3results/udp_client2server.json | jq -r '"udp_client2server_sum_jitter_ms=" + (.end.sum.jitter_ms|tostring)' >> "$GITHUB_OUTPUT" cat /tmp/iperf3results/udp_client2server.json | jq -r '"udp_client2server_sum_lost_percent=" + (.end.sum.lost_percent|tostring)' >> "$GITHUB_OUTPUT" - name: Save ${{ matrix.test_name }} Perfomance Test Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact_name }}-iperf3results path: /tmp/iperf3results