From eb34ed821dc0b8c5c4ed36285e9688e0450636d4 Mon Sep 17 00:00:00 2001 From: Matias Elo Date: Wed, 31 Jan 2024 09:57:25 +0200 Subject: [PATCH] github_ci: update checkout actions Update checkout GitHub action to v4 as node.js 16 actions are deprecated. Signed-off-by: Matias Elo --- .github/workflows/ci-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 01cd6ce..30c30e8 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -42,7 +42,7 @@ jobs: 'rocky_linux_9-x86_64'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build image run: docker build $IMAGE_DIR -t $IMAGE_NAME @@ -93,7 +93,7 @@ jobs: 'rocky_linux_9-arm64-native'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build image run: docker build $IMAGE_DIR -t $IMAGE_NAME @@ -136,7 +136,7 @@ jobs: 'ubuntu_20.04-x86_64-coverity-linux-dpdk'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build linux-generic image if: ${{ env.COVERITY_TOKEN_ODP && env.IMAGE_DIR == 'ubuntu_20.04-x86_64-coverity-linux-generic' }}