Skip to content

Commit

Permalink
Merge pull request #198 from miabbott/actions
Browse files Browse the repository at this point in the history
github: update artifact actions to v3
  • Loading branch information
cgwalters committed Nov 10, 2023
2 parents 0088fda + 939ab0d commit 02b41da
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 02b41da

Please sign in to comment.