From ce36a91875ee5f13b8a581d371be62accb708223 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 23:49:27 +0000 Subject: [PATCH] Bump actions/checkout from 1 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/create_automerge_pr.yml | 2 +- .github/workflows/performance_test.yml | 2 +- .github/workflows/soundness.yml | 36 +++++++++---------- .github/workflows/swift_package_test.yml | 44 +++++++++++------------ 4 files changed, 42 insertions(+), 42 deletions(-) diff --git a/.github/workflows/create_automerge_pr.yml b/.github/workflows/create_automerge_pr.yml index ca2e0922..b9a301ef 100644 --- a/.github/workflows/create_automerge_pr.yml +++ b/.github/workflows/create_automerge_pr.yml @@ -69,7 +69,7 @@ jobs: pull-requests: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Check if there are commits to merge diff --git a/.github/workflows/performance_test.yml b/.github/workflows/performance_test.yml index dcec8325..0add7b43 100644 --- a/.github/workflows/performance_test.yml +++ b/.github/workflows/performance_test.yml @@ -35,7 +35,7 @@ jobs: - name: Install libjemalloc-dev run: apt-get update && apt-get install -y libjemalloc-dev - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Mark the workspace as safe diff --git a/.github/workflows/soundness.yml b/.github/workflows/soundness.yml index 73d7e432..2ab97435 100644 --- a/.github/workflows/soundness.yml +++ b/.github/workflows/soundness.yml @@ -118,7 +118,7 @@ jobs: timeout-minutes: 40 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # This is set to true since swift package diagnose-api-breaking-changes is # cloning the repo again and without it being set to true this job won't work for @@ -158,13 +158,13 @@ jobs: timeout-minutes: 20 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -191,13 +191,13 @@ jobs: timeout-minutes: 20 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -227,13 +227,13 @@ jobs: timeout-minutes: 1 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -257,13 +257,13 @@ jobs: timeout-minutes: 1 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -287,13 +287,13 @@ jobs: timeout-minutes: 1 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -317,13 +317,13 @@ jobs: timeout-minutes: 20 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -352,7 +352,7 @@ jobs: - name: Install git run: which git || (apt -q update && apt -yq install git) - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true @@ -371,13 +371,13 @@ jobs: timeout-minutes: 5 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -406,13 +406,13 @@ jobs: timeout-minutes: 5 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false submodules: true - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows diff --git a/.github/workflows/swift_package_test.yml b/.github/workflows/swift_package_test.yml index 34012cdd..17aa0986 100644 --- a/.github/workflows/swift_package_test.yml +++ b/.github/workflows/swift_package_test.yml @@ -244,7 +244,7 @@ jobs: - ${{ fromJson((!inputs.enable_macos_checks && inputs.macos_archs) || '[]') }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Provide token if: ${{ inputs.needs_token }} run: | @@ -284,7 +284,7 @@ jobs: - ${{ fromJson((!inputs.enable_ios_checks && (inputs.ios_host_archs || inputs.macos_archs)) || '[]') }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Provide token if: ${{ inputs.needs_token }} run: | @@ -341,20 +341,20 @@ jobs: - name: Clang version run: clang --version - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ matrix.os_version != 'amazonlinux2' }} - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v6 if: ${{ matrix.os_version == 'amazonlinux2' }} - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version != 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version == 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v1 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: ${{ github.event.repository.name }}/github-workflows @@ -423,20 +423,20 @@ jobs: - name: Clang version run: clang --version - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ matrix.os_version != 'amazonlinux2' }} - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v6 if: ${{ matrix.os_version == 'amazonlinux2' }} - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version != 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version == 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v1 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: ${{ github.event.repository.name }}/github-workflows @@ -489,20 +489,20 @@ jobs: - name: Clang version run: clang --version - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ matrix.os_version != 'amazonlinux2' }} - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v6 if: ${{ matrix.os_version == 'amazonlinux2' }} - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version != 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version == 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v1 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: ${{ github.event.repository.name }}/github-workflows @@ -555,20 +555,20 @@ jobs: - name: Clang version run: clang --version - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ matrix.os_version != 'amazonlinux2' }} - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v6 if: ${{ matrix.os_version == 'amazonlinux2' }} - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version != 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows - name: Checkout swiftlang/github-workflows repository if: ${{ matrix.os_version == 'amazonlinux2' && github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v1 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: ${{ github.event.repository.name }}/github-workflows @@ -619,9 +619,9 @@ jobs: - name: Clang version run: clang --version - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Checkout swiftlang/github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows @@ -686,10 +686,10 @@ jobs: - ${{ fromJson((!inputs.enable_windows_checks && inputs.windows_os_versions) || '[]') }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Checkout swiftlang/github-workflows repository if: ${{ github.repository != 'swiftlang/github-workflows' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: swiftlang/github-workflows path: github-workflows