Skip to content

Commit

Permalink
chore(ci): Bump the artifact group with 2 updates (#19391)
Browse files Browse the repository at this point in the history
Bumps the artifact group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: artifact
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: artifact
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 15, 2023
1 parent bd2cff8 commit 17fd152
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
# aarch64 and musl in particular are notoriously hard to link.
# While it may be tempting to slot a `check` in here for quickness, please don't.
- run: make cross-build-${{ matrix.target }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "vector-debug-${{ matrix.target }}"
path: "./target/${{ matrix.target }}/debug/vector"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/k8s_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: VECTOR_VERSION="$(cargo vdev version)" make package-deb-x86_64-unknown-linux-gnu

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: e2e-test-deb-package
path: target/artifacts/*
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
if: ${{ github.event_name != 'issue_comment' }}
uses: actions/checkout@v3

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: e2e-test-deb-package
path: target/artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview_site_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Upload the artifact
- name: Upload PR information artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pr
path: pr/
86 changes: 43 additions & 43 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Build Vector
run: make package-x86_64-unknown-linux-musl-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-musl
path: target/artifacts/vector*
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Build Vector
run: make package-x86_64-unknown-linux-gnu-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts/vector*
Expand All @@ -114,7 +114,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-aarch64-unknown-linux-musl-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-musl
path: target/artifacts/vector*
Expand All @@ -141,7 +141,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-aarch64-unknown-linux-gnu-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-gnu
path: target/artifacts/vector*
Expand All @@ -168,7 +168,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-armv7-unknown-linux-gnueabihf-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-gnueabihf
path: target/artifacts/vector*
Expand All @@ -195,7 +195,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-armv7-unknown-linux-musleabihf
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-musleabihf
path: target/artifacts/vector*
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
export PATH="$HOME/.cargo/bin:$PATH"
make package
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-apple-darwin
path: target/artifacts/vector*
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
export PATH="/c/wix:$PATH"
./scripts/package-msi.sh
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-pc-windows-msvc
path: target/artifacts/vector*
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
with:
ref: ${{ inputs.git_ref }}
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
with:
ref: ${{ inputs.git_ref }}
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts
Expand All @@ -382,7 +382,7 @@ jobs:
with:
ref: ${{ inputs.git_ref }}
- name: Download staged package artifacts (x86_64-apple-darwin)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-apple-darwin
path: target/artifacts
Expand Down Expand Up @@ -427,32 +427,32 @@ jobs:
version: latest
install: true
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (aarch64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-gnueabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-gnueabihf
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-musleabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-musleabihf
path: target/artifacts
Expand Down Expand Up @@ -487,42 +487,42 @@ jobs:
with:
ref: ${{ inputs.git_ref }}
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (aarch64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-apple-darwin)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-apple-darwin
path: target/artifacts
- name: Download staged package artifacts (x86_64-pc-windows-msvc)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-pc-windows-msvc
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-gnueabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-gnueabihf
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-musleabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-musleabihf
path: target/artifacts
Expand Down Expand Up @@ -559,47 +559,47 @@ jobs:
with:
ref: ${{ inputs.git_ref }}
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (aarch64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-apple-darwin)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-apple-darwin
path: target/artifacts
- name: Download staged package artifacts (x86_64-pc-windows-msvc)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-pc-windows-msvc
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-gnueabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-gnueabihf
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-musleabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-musleabihf
path: target/artifacts
- name: Download artifact checksums
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-SHA256SUMS
path: target/artifacts
Expand Down Expand Up @@ -649,49 +649,49 @@ jobs:
with:
ref: ${{ inputs.git_ref }}
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (aarch64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts
- name: Download staged package artifacts (x86_64-unknown-linux-musl)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-musl
path: target/artifacts
- name: Download staged package artifacts (x86_64-apple-darwin)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-apple-darwin
path: target/artifacts
- name: Download staged package artifacts (x86_64-pc-windows-msvc)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-pc-windows-msvc
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-gnueabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-gnueabihf
path: target/artifacts
- name: Download staged package artifacts (armv7-unknown-linux-musleabihf)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-musleabihf
path: target/artifacts
- name: Generate SHA256 checksums for artifacts
run: make sha256sum
- name: Stage checksum for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vector-${{ env.VECTOR_VERSION }}-SHA256SUMS
path: target/artifacts/vector-${{ env.VECTOR_VERSION }}-SHA256SUMS
Loading

0 comments on commit 17fd152

Please sign in to comment.