Skip to content

Commit 939ab0d

Browse files
committed
github: update artifact actions to v3
The upload/download-artifact v2 actions are throwing warnings about using Node12. The v3 versions are updated to use Node16. See: https://github.blog/changelog/2021-12-10-github-actions-github-hosted-runners-now-run-node-js-16-by-default/ Signed-off-by: Micah Abbott <[email protected]>
1 parent 282eff6 commit 939ab0d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Build
5757
run: make test-bin-archive
5858
- name: Upload binary
59-
uses: actions/upload-artifact@v2
59+
uses: actions/upload-artifact@v3
6060
with:
6161
name: bootc.tar.zst
6262
path: target/bootc.tar.zst
@@ -76,7 +76,7 @@ jobs:
7676
- name: Checkout repository
7777
uses: actions/checkout@v3
7878
- name: Download
79-
uses: actions/download-artifact@v2
79+
uses: actions/download-artifact@v3
8080
with:
8181
name: bootc.tar.zst
8282
- name: Install
@@ -90,7 +90,7 @@ jobs:
9090
container: quay.io/fedora/fedora-coreos:testing-devel
9191
steps:
9292
- name: Download
93-
uses: actions/download-artifact@v2
93+
uses: actions/download-artifact@v3
9494
with:
9595
name: bootc.tar.zst
9696
- name: Install
@@ -103,14 +103,14 @@ jobs:
103103
runs-on: ubuntu-latest
104104
steps:
105105
- name: Download
106-
uses: actions/download-artifact@v2
106+
uses: actions/download-artifact@v3
107107
with:
108108
name: bootc.tar.zst
109109
- name: Install
110110
run: tar -xvf bootc.tar.zst
111111
- name: Update host skopeo
112112
run: |
113-
echo 'deb http://cz.archive.ubuntu.com/ubuntu lunar main universe' | sudo tee -a /etc/apt/sources.list
113+
echo 'deb http://cz.archive.ubuntu.com/ubuntu lunar main universe' | sudo tee -a /etc/apt/sources.list
114114
sudo apt update
115115
sudo apt upgrade skopeo
116116
- name: Integration tests

0 commit comments

Comments
 (0)