From 872a25c492ba98dba8cfcb59d83247e43a092fa7 Mon Sep 17 00:00:00 2001 From: muxator Date: Wed, 6 Dec 2023 12:12:52 +0100 Subject: [PATCH] ci: update "actions/checkout@v3" -> "actions/checkout@v4" Workflow verify-version-consistency was the last one written, and already used checkout@v4. Let's align all the remaining workflows to use the most recent action version. No functional changes. --- .github/workflows/build-with-cmake.yml | 2 +- .github/workflows/functional-tests.yml | 2 +- .github/workflows/tests-and-examples-under-valgrind.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-with-cmake.yml b/.github/workflows/build-with-cmake.yml index fc4946078c..2a47aefeb5 100644 --- a/.github/workflows/build-with-cmake.yml +++ b/.github/workflows/build-with-cmake.yml @@ -20,7 +20,7 @@ jobs: dnf install -y \ cmake \ gcc - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Build with CMake diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index c68d42f076..a78e499afc 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -27,7 +27,7 @@ jobs: gcovr \ libtool \ pkg-config - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Run autogen diff --git a/.github/workflows/tests-and-examples-under-valgrind.yml b/.github/workflows/tests-and-examples-under-valgrind.yml index d287d8d85c..65401d685d 100644 --- a/.github/workflows/tests-and-examples-under-valgrind.yml +++ b/.github/workflows/tests-and-examples-under-valgrind.yml @@ -24,7 +24,7 @@ jobs: libtool \ pkg-config \ valgrind - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: prepare the build (only enabling FROST, tests and examples)