mirror of
https://github.com/k3s-io/k3s.git
synced 2026-06-11 01:44:08 -04:00
Bump actions/download-artifact from 4 to 5 (#12735)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
78d02becac
commit
b65f8a6185
5 changed files with 9 additions and 9 deletions
6
.github/workflows/e2e.yaml
vendored
6
.github/workflows/e2e.yaml
vendored
|
|
@ -83,7 +83,7 @@ jobs:
|
|||
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
|
||||
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
|
||||
- name: "Download k3s binary"
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: k3s-amd64
|
||||
path: ./dist/artifacts
|
||||
|
|
@ -181,7 +181,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: "Download K3s image"
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: k3s-${{ matrix.arch }}
|
||||
path: ./dist/artifacts
|
||||
|
|
@ -195,7 +195,7 @@ jobs:
|
|||
IMAGE_TAG=$(docker image ls --format '{{.Repository}}:{{.Tag}}' | grep 'rancher/k3s')
|
||||
echo "K3S_IMAGE=$IMAGE_TAG" >> $GITHUB_ENV
|
||||
- name: Download Go Tests
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: docker-go-tests-${{ matrix.arch }}
|
||||
path: ./dist/artifacts
|
||||
|
|
|
|||
2
.github/workflows/install.yaml
vendored
2
.github/workflows/install.yaml
vendored
|
|
@ -52,7 +52,7 @@ jobs:
|
|||
- name: "Vagrant Plugin(s)"
|
||||
run: vagrant plugin install vagrant-k3s vagrant-reload vagrant-scp
|
||||
- name: "Download k3s binary"
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: k3s-amd64
|
||||
path: tests/install/${{ matrix.vm }}
|
||||
|
|
|
|||
4
.github/workflows/integration.yaml
vendored
4
.github/workflows/integration.yaml
vendored
|
|
@ -55,7 +55,7 @@ jobs:
|
|||
- name: Install Go
|
||||
uses: ./.github/actions/setup-go
|
||||
- name: "Download k3s binary"
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: k3s-amd64
|
||||
path: ./dist/artifacts
|
||||
|
|
@ -93,7 +93,7 @@ jobs:
|
|||
- name: Install Go
|
||||
uses: ./.github/actions/setup-go
|
||||
- name: Download k3s binary
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: k3s-windows
|
||||
path: dist/artifacts/
|
||||
|
|
|
|||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -77,7 +77,7 @@ jobs:
|
|||
tags: ${{ steps.tag_config.outputs.tag_spec }}
|
||||
|
||||
- name: "Download K3s build"
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
pattern: k3s*
|
||||
path: ./dist/artifacts
|
||||
|
|
@ -163,7 +163,7 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Download Binaries and Airgap sha256sum"
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
pattern: k3s*
|
||||
path: ./dist/artifacts
|
||||
|
|
|
|||
2
.github/workflows/trivy-scan.yml
vendored
2
.github/workflows/trivy-scan.yml
vendored
|
|
@ -85,7 +85,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Download Trivy Report artifact
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
if: needs.trivy_scan.result == 'success'
|
||||
with:
|
||||
name: trivy-report
|
||||
|
|
|
|||
Loading…
Reference in a new issue