diff --git a/.github/workflows/build-status.yml b/.github/workflows/build-status.yml index add257c57..a8212cb3c 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@v5 + - uses: actions/checkout@v6 - name: Setup .NET Core uses: actions/setup-dotnet@v5 @@ -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@v5 + - uses: actions/checkout@v6 - name: "Download artifact" uses: actions/download-artifact@v6 diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 546bae55c..3cffc4b86 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@v5 + uses: actions/checkout@v6 # 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 273d27fcd..994247fa0 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@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/receive-pr.yml b/.github/workflows/receive-pr.yml index 5d1b3248a..f83c49339 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@v5 + - uses: actions/checkout@v6 - name: Setup .NET Core uses: actions/setup-dotnet@v5