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

github: update artifact actions to v3 #198

Merged
merged 1 commit into from
Nov 10, 2023
Merged
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
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@v2
uses: actions/upload-artifact@v3
with:
name: bootc.tar.zst
path: target/bootc.tar.zst
Expand All @@ -76,7 +76,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bootc.tar.zst
- name: Install
Expand All @@ -90,7 +90,7 @@ jobs:
container: quay.io/fedora/fedora-coreos:testing-devel
steps:
- name: Download
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bootc.tar.zst
- name: Install
Expand All @@ -103,14 +103,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bootc.tar.zst
- name: Install
run: tar -xvf bootc.tar.zst
- name: Update host skopeo
run: |
echo 'deb http://cz.archive.ubuntu.com/ubuntu lunar main universe' | sudo tee -a /etc/apt/sources.list
echo 'deb http://cz.archive.ubuntu.com/ubuntu lunar main universe' | sudo tee -a /etc/apt/sources.list
sudo apt update
sudo apt upgrade skopeo
- name: Integration tests
Expand Down
Loading