diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index a029ccf2d5..f21775d900 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -32,7 +32,7 @@ jobs: shell: pwsh run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) - name: Checkout - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup .NET SDK diff --git a/.github/workflows/build-db-container.yml b/.github/workflows/build-db-container.yml index 445cf43162..026543faae 100644 --- a/.github/workflows/build-db-container.yml +++ b/.github/workflows/build-db-container.yml @@ -16,7 +16,7 @@ jobs: shell: pwsh run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) - name: Checkout - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup .NET SDK diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 1408e6b895..36da533d06 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -12,7 +12,7 @@ jobs: SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }} run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) - name: Checkout - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup .NET SDK diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43c0f09ea1..4b078a2f1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }} run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) - name: Checkout - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup .NET SDK diff --git a/.github/workflows/container-integration-test.yml b/.github/workflows/container-integration-test.yml index dfa67cffb7..109a533db6 100644 --- a/.github/workflows/container-integration-test.yml +++ b/.github/workflows/container-integration-test.yml @@ -50,7 +50,7 @@ jobs: shell: pwsh run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) - name: Checkout - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup .NET SDK diff --git a/.github/workflows/push-container-images.yml b/.github/workflows/push-container-images.yml index b0bc2478e6..f4a6dbc0fb 100644 --- a/.github/workflows/push-container-images.yml +++ b/.github/workflows/push-container-images.yml @@ -15,7 +15,7 @@ jobs: shell: pwsh steps: - name: Checkout - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 - name: Validate build version id: validate uses: ./.github/actions/validate-version