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

[skip-ci] Update all github action dependencies to v4 (major) #353

Merged
merged 1 commit into from
Feb 15, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/autovendor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: cargo install cargo-vendor-filterer
- name: Run
run: mkdir -p target && cd cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../target/vendor.tar.zst
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: vendor.tar.zst
path: target/vendor.tar.zst
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Build
run: make test-bin-archive
- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bootc.tar.zst
path: target/bootc.tar.zst
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Build
run: make test-bin-archive
- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bootc-c9s.tar.zst
path: target/bootc.tar.zst
Expand All @@ -95,7 +95,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bootc.tar.zst
- name: Install
Expand All @@ -109,7 +109,7 @@ jobs:
container: quay.io/centos-bootc/fedora-bootc:eln
steps:
- name: Download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bootc.tar.zst
- name: Install
Expand All @@ -124,7 +124,7 @@ jobs:
- name: Ensure host skopeo is disabled
run: sudo rm -f /bin/skopeo /usr/bin/skopeo
- name: Download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bootc-c9s.tar.zst
- name: Install
Expand Down