Update workflow components

This commit is contained in:
Michał Trojnara 2024-03-05 15:51:29 +01:00
parent 699bc85d0a
commit e07bb7d6b2
3 changed files with 10 additions and 10 deletions

View File

@ -72,11 +72,11 @@ jobs:
VCPKG_ROOT: ${{matrix.vcpkg_root}} VCPKG_ROOT: ${{matrix.vcpkg_root}}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Cache the vcpkg archives - name: Cache the vcpkg archives
if: matrix.cache != '' if: matrix.cache != ''
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: ${{matrix.cache}} path: ${{matrix.cache}}
key: ${{matrix.id}}-${{hashFiles('vcpkg.json')}} key: ${{matrix.id}}-${{hashFiles('vcpkg.json')}}
@ -120,7 +120,7 @@ jobs:
- name: Setup the oldest supported version of cmake (macOS) - name: Setup the oldest supported version of cmake (macOS)
if: runner.os == 'macOS' if: runner.os == 'macOS'
uses: jwlawson/actions-setup-cmake@v1.12 uses: jwlawson/actions-setup-cmake@v2.0
with: with:
cmake-version: '3.17.0' cmake-version: '3.17.0'
@ -173,7 +173,7 @@ jobs:
run: ctest -C ${{env.BUILD_TYPE}} run: ctest -C ${{env.BUILD_TYPE}}
- name: Upload the errors - name: Upload the errors
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
if: failure() if: failure()
with: with:
name: errors-${{matrix.id}} name: errors-${{matrix.id}}
@ -187,7 +187,7 @@ jobs:
run: cmake --install ${{github.workspace}}/build run: cmake --install ${{github.workspace}}/build
- name: Upload the executables - name: Upload the executables
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: ${{env.version}}-${{matrix.id}} name: ${{env.version}}-${{matrix.id}}
path: ${{github.workspace}}/dist path: ${{github.workspace}}/dist

View File

@ -25,11 +25,11 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning. # Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v2 uses: github/codeql-action/init@v3
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
@ -43,7 +43,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # 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) # If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild - name: Autobuild
uses: github/codeql-action/autobuild@v2 uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell. # 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 # 📚 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 # ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v3

View File

@ -10,7 +10,7 @@ jobs:
env: env:
token: ${{secrets.COVERITY_SCAN_TOKEN}} token: ${{secrets.COVERITY_SCAN_TOKEN}}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
if: env.token if: env.token
- name: Get ready for scanning - name: Get ready for scanning
if: env.token if: env.token