diff --git a/.github/workflows/bom-check.yml b/.github/workflows/bom-check.yml index 16e0d4a3..dfd2ffab 100644 --- a/.github/workflows/bom-check.yml +++ b/.github/workflows/bom-check.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check for Unicode BOM in text files run: | diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml index 2b585af9..01bfc54a 100644 --- a/.github/workflows/csharp.yml +++ b/.github/workflows/csharp.yml @@ -26,7 +26,7 @@ jobs: outputs: isCsFilesChanged: ${{ steps.setIsCsFilesChangedOutput.outputs.isCsFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files using defaults @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup .NET SDK @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup .NET SDK @@ -91,7 +91,7 @@ jobs: needs: [test] if: ${{ needs.findChangedCsFiles.outputs.isCsFilesChanged == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup .NET SDK @@ -134,7 +134,7 @@ jobs: needs: [findChangedCsFiles, pushToNuget, publishDocumentation] if: ${{ needs.findChangedCsFiles.outputs.isCsFilesChanged == 'true' && needs.pushToNuget.result == 'success' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup .NET SDK @@ -188,7 +188,7 @@ jobs: needs: [test] if: ${{ needs.findChangedCsFiles.outputs.isCsFilesChanged == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup .NET SDK @@ -253,7 +253,7 @@ jobs: needs: [test, generatePdfWithCode] if: ${{ needs.findChangedCsFiles.outputs.isCsFilesChanged == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Download PDF artifact diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0d99052b..fab655d6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -25,7 +25,7 @@ jobs: outputs: isGoFilesChanged: ${{ steps.setIsGoFilesChangedOutput.outputs.isGoFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files using defaults @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Go @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Go @@ -102,7 +102,7 @@ jobs: needs: [findChangedGoFiles, test] if: ${{ needs.findChangedGoFiles.outputs.isGoFilesChanged == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Create Go module tag and GitHub release diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index e80d50f8..77c80232 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -25,7 +25,7 @@ jobs: outputs: isJavaFilesChanged: ${{ steps.setIsJavaFilesChangedOutput.outputs.isJavaFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files using defaults @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up JDK 11 @@ -73,7 +73,7 @@ jobs: matrix: java: ['11', '17', '21'] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up JDK ${{ matrix.java }} @@ -91,7 +91,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up JDK 11 @@ -111,7 +111,7 @@ jobs: outputs: published: ${{ steps.creds.outputs.have_creds == 'true' && steps.version-check.outputs.should_publish == 'true' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Check publishing credentials @@ -167,7 +167,7 @@ jobs: needs: [findChangedJavaFiles, publishToMavenCentral] if: ${{ needs.findChangedJavaFiles.outputs.isJavaFilesChanged == 'true' && needs.publishToMavenCentral.outputs.published == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up JDK 11 diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index fdd5d8a4..308a5bf0 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -26,7 +26,7 @@ jobs: outputs: isJsFilesChanged: ${{ steps.setIsJsFilesChangedOutput.outputs.isJsFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files using defaults @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Bun @@ -69,7 +69,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Bun @@ -87,7 +87,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Bun @@ -107,7 +107,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Bun @@ -147,7 +147,7 @@ jobs: needs: [findChangedJsFiles, publishToNpm] if: ${{ needs.findChangedJsFiles.outputs.isJsFilesChanged == 'true' && needs.publishToNpm.result == 'success' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Bun diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index c3ec70fb..01fc2cbb 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -27,7 +27,7 @@ jobs: outputs: isDocsFilesChanged: ${{ steps.setIsDocsFilesChangedOutput.outputs.isDocsFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files using defaults @@ -53,7 +53,7 @@ jobs: if: ${{ needs.findChangedDocsFiles.outputs.isDocsFilesChanged == 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Node.js diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 453306b0..335c1dfc 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -26,7 +26,7 @@ jobs: outputs: isPythonFilesChanged: ${{ steps.setIsPythonFilesChangedOutput.outputs.isPythonFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up Python 3.13 @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up Python 3.13 @@ -99,7 +99,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up Python @@ -141,7 +141,7 @@ jobs: needs: [findChangedPythonFiles, publishToPyPI] if: ${{ needs.findChangedPythonFiles.outputs.isPythonFilesChanged == 'true' && needs.publishToPyPI.result == 'success' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Set up Python diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e5c026be..6e5be3e4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,7 +26,7 @@ jobs: outputs: isRustFilesChanged: ${{ steps.setIsRustFilesChangedOutput.outputs.isRustFilesChanged }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files using defaults @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Rust @@ -81,7 +81,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Rust @@ -112,7 +112,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Rust @@ -200,7 +200,7 @@ jobs: needs: [findChangedRustFiles, publishToCratesIO] if: ${{ needs.findChangedRustFiles.outputs.isRustFilesChanged == 'true' && needs.publishToCratesIO.result == 'success' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Setup Rust