From 939ab0d314dbe71fc6e4809885c01c220afc05bd Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Fri, 10 Nov 2023 17:24:25 -0500 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a274902e..de7c1890 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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 @@ -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