From 95d0b06953ebbcb07342597f6e01e1fd44ad3373 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 13:20:48 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/automation-trigger-test.yml | 4 ++-- .github/workflows/integration-tests.yml | 2 +- .github/workflows/post-release-qa.yml | 8 ++++---- .github/workflows/pre-release-qa.yml | 16 ++++++++-------- .github/workflows/release.yml | 14 +++++++------- .github/workflows/verify.yml | 2 +- .github/workflows/version-bump.yml | 2 +- 7 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/automation-trigger-test.yml b/.github/workflows/automation-trigger-test.yml index 4ffaa4ed0..0bc1ad9d8 100644 --- a/.github/workflows/automation-trigger-test.yml +++ b/.github/workflows/automation-trigger-test.yml @@ -23,7 +23,7 @@ jobs: BROWSERSTACK_USER: ${{ secrets.BROWSER_STACK_USER }} steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install the Apple certificate and provisioning profile env: BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} @@ -66,7 +66,7 @@ jobs: echo "::add-mask::$parsed" echo "BrowserStackIOSBuildKey=$parsed" >> "$GITHUB_ENV" - name: Cheout Automation Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: BranchMetrics/qentelli-saas-sdk-testing-automation token: ${{ secrets.BRANCHLET_ACCESS_TOKEN_PUBLIC }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 079e2cf9e..08224eed7 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/post-release-qa.yml b/.github/workflows/post-release-qa.yml index 869796deb..6f65a6fef 100644 --- a/.github/workflows/post-release-qa.yml +++ b/.github/workflows/post-release-qa.yml @@ -8,7 +8,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pod, build project and run tests run: | ./scripts/getSimulator @@ -20,7 +20,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run carthage command, build project and run tests run: | ./scripts/getSimulator @@ -32,7 +32,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: build project and run tests run: | ./scripts/getSimulator @@ -43,7 +43,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pod, build project and run tests run: | ./scripts/getSimulator diff --git a/.github/workflows/pre-release-qa.yml b/.github/workflows/pre-release-qa.yml index 0a2d30548..0cd6ea23a 100644 --- a/.github/workflows/pre-release-qa.yml +++ b/.github/workflows/pre-release-qa.yml @@ -7,7 +7,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pod, build project and run tests run: | echo "branch=${{ github.ref }}" >> $GITHUB_OUTPUT @@ -20,7 +20,7 @@ jobs: runs-on: macos-15 steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Create Cart File, run carthage command, build project and run tests env: BRANCH_NAME: ${{ github.head_ref || github.ref_name }} @@ -36,7 +36,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: build project and run tests run: | ./scripts/getSimulator @@ -47,7 +47,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: build xcframework, then build project and run tests run: | ./scripts/getSimulator @@ -59,7 +59,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: build static xcframework, then build project and run tests run: | ./scripts/getSimulator @@ -71,7 +71,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pod, build project and run tests run: | ./scripts/getSimulator @@ -83,7 +83,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Verify Integration using Carthage for tvOS run: | ./scripts/getSimulator @@ -94,7 +94,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: build xcframework, then build project and run tests run: | ./scripts/getSimulator diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba664551d..950f15914 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run static analysis run: | xcodebuild analyze -project BranchSDK.xcodeproj @@ -31,7 +31,7 @@ jobs: # needs: [static-analysis] # steps: # - name: Check out code - # uses: actions/checkout@v4 + # uses: actions/checkout@v6 # - name: Update Version # run: | # if [[ ${{ inputs.version }} == "patch" ]]; then @@ -56,7 +56,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install the Apple certificate env: BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} @@ -99,7 +99,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install the Apple certificate env: BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} @@ -140,7 +140,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build static xcframework run: | ./scripts/prep_static_xcframework.sh @@ -158,7 +158,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build static xcframework run: | ./scripts/prep_static_xcframework_noidfa.sh @@ -175,7 +175,7 @@ jobs: needs: [build-framework, build-static-framework, build-noidfa-framework, build-static-noidfa-framework] steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 92bc6a408..86ba9d64f 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -12,7 +12,7 @@ jobs: timeout-minutes: 20 steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 38b7f9842..bab6963e7 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -15,7 +15,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: