From dd7a8aeb106e6843545cb965758aa6ed18c837d2 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Sun, 19 May 2024 18:23:11 -0400 Subject: [PATCH] ci: Bump actions/checkout to v4 --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c563972..5655b2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: net-tools \ make \ ; - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen run: ./autogen - name: configure @@ -64,7 +64,11 @@ jobs: container: image: ${{ matrix.image }} steps: - - uses: actions/checkout@v2 + - if: ${{ matrix.image != 'registry.access.redhat.com/ubi7/ubi:latest' }} + uses: actions/checkout@v4 + # ubi7 is too old for checkout@v4. + - if: ${{ matrix.image == 'registry.access.redhat.com/ubi7/ubi:latest' }} + uses: actions/checkout@v3 - name: install dependencies # The --skip-broken argument works around RedHat UBI's missing packages. # (They're only used for testing, so it's OK to not install them.)