Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/upload-artifact from 4.3.2 to 4.3.3 #12487

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
docker cp "$id:/out/linkerd-linux-amd64" /home/runner/archives/linkerd
v=$(/home/runner/archives/linkerd version --short --client)
[[ "$v" == '${{ needs.meta.outputs.tag }}' ]] || exit 1
- uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: image-archives-cli
path: /home/runner/archives
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
run: |
mkdir -p /home/runner/archives
docker save '${{ steps.build.outputs.image }}' >'/home/runner/archives/${{ matrix.component }}.tar'
- uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: image-archives-${{ matrix.component }}
path: /home/runner/archives
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
run: |
mkdir -p /home/runner/archives
docker save '${{ steps.build.outputs.image }}' >'/home/runner/archives/${{ matrix.component }}.tar'
- uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: image-archives-${{ matrix.component }}
path: /home/runner/archives
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# https://github.com/actions/upload-artifact/issues/8
- name: Upload artifact
if: matrix.component == 'cli-bin'
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: image-archives-cli
path: /home/runner/archives
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
args: pack bin/win/linkerd.nuspec
- name: Chocolatey - upload package
if: startsWith(github.ref, 'refs/tags/stable')
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: choco
path: ./linkerd.*.nupkg
Expand Down
Loading