From e07bb7d6b20baee68e358de52ff9b09b3f6bf124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Tue, 5 Mar 2024 15:51:29 +0100 Subject: [PATCH] Update workflow components --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/coverity.yml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 527b979..9c5c0d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,11 +72,11 @@ jobs: VCPKG_ROOT: ${{matrix.vcpkg_root}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache the vcpkg archives if: matrix.cache != '' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{matrix.cache}} key: ${{matrix.id}}-${{hashFiles('vcpkg.json')}} @@ -120,7 +120,7 @@ jobs: - name: Setup the oldest supported version of cmake (macOS) if: runner.os == 'macOS' - uses: jwlawson/actions-setup-cmake@v1.12 + uses: jwlawson/actions-setup-cmake@v2.0 with: cmake-version: '3.17.0' @@ -173,7 +173,7 @@ jobs: run: ctest -C ${{env.BUILD_TYPE}} - name: Upload the errors - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: errors-${{matrix.id}} @@ -187,7 +187,7 @@ jobs: run: cmake --install ${{github.workspace}}/build - name: Upload the executables - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{env.version}}-${{matrix.id}} path: ${{github.workspace}}/dist diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b3c58a8..aa1ef0b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -25,11 +25,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} @@ -43,7 +43,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -56,4 +56,4 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index a51cfa8..cec2092 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -10,7 +10,7 @@ jobs: env: token: ${{secrets.COVERITY_SCAN_TOKEN}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: env.token - name: Get ready for scanning if: env.token