Skip to content

build(deps): bump actions/upload-artifact and actions/download-artifact from 3 to 4 #467

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

Merged
merged 1 commit into from
Dec 19, 2023
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
build(deps): bump actions/upload-artifact and actions/download-artifa…
…ct from 3 to 4

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

Bumps [actions/upload-artifact](https://github.com/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-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: James Alseth <james@jalseth.me>
  • Loading branch information
dependabot[bot] authored and jalseth committed Dec 19, 2023
commit 1989b681311b1d7535711aaf9fb878fe95fc1fda
4 changes: 2 additions & 2 deletions .github/workflows/cron_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: make build

- name: upload build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: konstraint
path: build/konstraint
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/checkout@v4

- name: download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: konstraint

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: make build

- name: upload build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: konstraint-${{ matrix.os }}
path: build/konstraint
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
uses: actions/checkout@v4

- name: download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: konstraint-ubuntu-latest

Expand Down