From 82708b677bf2cde3457eedaf75f3cbdc48ff473c Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Thu, 25 May 2023 10:20:40 +0200 Subject: Address Node.js 12 actions are deprecated. Message on workflows continued with Please update the following actions to use Node.js 16: actions/checkout@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. --- .github/workflows/build-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index f2c097c..8a48225 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -21,7 +21,7 @@ jobs: - 'quay.io/centos/centos:stream8' - 'registry.centos.org/centos:7' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set the right OS in the Dockerfile run: sed -i "s#^FROM.*#FROM ${{ matrix.os }}#" tests/Dockerfile - name: Build image -- cgit