From deb176fcd54b4b196b601c125a72da0f64b59b68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= Date: Fri, 18 Oct 2024 11:09:37 +0100 Subject: [PATCH 1/2] automation: use latest oVirt actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recently GitHub started failing on deprecated upload artifacts actions: ``` Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ ``` Signed-off-by: Tomáš Golembiovský --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0c9923b..9f0f577 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: matrix: distro: [el8stream, el9stream] steps: - - uses: actions/checkout@v2 + - uses: ovirt/checkout-action@main with: fetch-depth: 0 - name: Mark repository as safe @@ -20,7 +20,6 @@ jobs: - name: Check patch run: ./automation/check-patch.sh - name: Upload artifacts - uses: ovirt/upload-rpms-action@v1 + uses: ovirt/upload-rpms-action@main with: directory: ${{ env.EXPORT_DIR }} - distro: ${{ matrix.distro }} From 1460f8d6a6ec53f645b73ee6013abb4a2989d8bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= Date: Mon, 21 Oct 2024 10:25:41 +0100 Subject: [PATCH 2/2] automation: remove EL8 image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EL8 is now EOL Signed-off-by: Tomáš Golembiovský --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9f0f577..7bd0b56 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: container: quay.io/ovirt/buildcontainer:${{ matrix.distro }} strategy: matrix: - distro: [el8stream, el9stream] + distro: [el9stream] steps: - uses: ovirt/checkout-action@main with: