From b9fd1d3cff859cfc2de1bc2858269677f23c13f7 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Tue, 19 Nov 2024 21:38:43 +0100 Subject: [PATCH 1/2] Update to actions/checkout@v4 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0e5e4b6..88ad137 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: container: image: ${{ matrix.centos }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install packages run: yum install -y selinux-policy-devel policycoreutils - name: Build policies From e4e686ea49735a37892a59ff7b8c8e8fd97577f8 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Tue, 19 Nov 2024 21:41:30 +0100 Subject: [PATCH 2/2] Drop EL7 & EL8 testing in CI Both CentOS 7 and 8 are EOL and no longer available on the mirrors. --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 88ad137..1f92056 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,8 @@ jobs: strategy: fail-fast: false matrix: - centos: ["centos:7", "quay.io/centos/centos:stream8", "quay.io/centos/centos:stream9"] + centos: + - "quay.io/centos/centos:stream9" container: image: ${{ matrix.centos }} steps: