diff --git a/.github/workflows/build-status.yml b/.github/workflows/build-status.yml index 1bac9b962..9c68bfa6c 100644 --- a/.github/workflows/build-status.yml +++ b/.github/workflows/build-status.yml @@ -12,7 +12,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup .NET Core uses: actions/setup-dotnet@v4 @@ -75,7 +75,7 @@ jobs: # the build-and-test job might be skipped, we don't need to run this job then if: always() steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: "Download artifact" uses: actions/download-artifact@v5 diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 5f11fa2a7..3cb2f92ef 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -35,7 +35,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 939719eea..f00e7434c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/receive-pr.yml b/.github/workflows/receive-pr.yml index 03dc5969d..177ee3e4e 100644 --- a/.github/workflows/receive-pr.yml +++ b/.github/workflows/receive-pr.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup .NET Core uses: actions/setup-dotnet@v4