diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index 8c824d5..de98960 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -169,7 +169,7 @@ jobs: fi - name: Checkout Source Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Download specific Build Artifact to artifacts/ if: ${{ inputs.artifact-name != '' && inputs.artifact-name != '*' }} diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5af590f..8331e3b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -51,7 +51,7 @@ jobs: steps: - name: Checkout Source Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Java for Building the Package uses: actions/setup-java@v5 diff --git a/.github/workflows/rust-inner.yml b/.github/workflows/rust-inner.yml index 99585c8..a8d0042 100644 --- a/.github/workflows/rust-inner.yml +++ b/.github/workflows/rust-inner.yml @@ -26,7 +26,7 @@ jobs: name: "Build ${{ inputs.architecture }}${{ inputs.features && format(' ({0})', inputs.features) || '' }}" runs-on: ${{ inputs.architecture == 'arm64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set profile ${{ inputs.profile }} env: PROFILE: ${{ inputs.profile }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fd5ff1c..59195cc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Write deny.toml run: | if [[ -f "deny.toml" ]]; then @@ -117,7 +117,7 @@ jobs: features: ${{ fromJSON(inputs.features) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Download bins uses: actions/download-artifact@v5 with: @@ -145,7 +145,7 @@ jobs: if: ${{ inputs.cargo-fmt-check }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable with: components: rustfmt