From 14dc453dc9812951a319a4e89dbd39c4ba56af57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:58:22 -0700 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#1289) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nipun Singh <88689850+nsingh-branch@users.noreply.github.com> --- .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 6888e7e4b..cdbf77488 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@v3 + uses: actions/checkout@v4 - name: Install the Apple certificate and provisioning profile env: BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} @@ -69,7 +69,7 @@ jobs: echo "::add-mask::$parsed" echo "APP_URL=$parsed" >> "$GITHUB_ENV" - name: Cheout Automation Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 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 1f3a9a1dd..079e2cf9e 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@v3 + uses: actions/checkout@v4 - 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 758e6a14d..869796deb 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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 2494bf6ce..2178d9faf 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@v3 + uses: actions/checkout@v4 - name: Install pod, build project and run tests run: | echo "branch=${{ github.ref }}" >> $GITHUB_OUTPUT @@ -20,7 +20,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 - 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 93c2160f3..29a3fa190 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@v3 + uses: actions/checkout@v4 - 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@v3 + # uses: actions/checkout@v4 # - 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@v3 + uses: actions/checkout@v4 - name: Build xcframework run: | ./scripts/prep_xcframework.sh @@ -74,7 +74,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build xcframework run: | ./scripts/prep_xcframework_noidfa.sh @@ -92,7 +92,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build static xcframework run: | ./scripts/prep_static_xcframework.sh @@ -110,7 +110,7 @@ jobs: needs: [static-analysis] steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build static xcframework run: | ./scripts/prep_static_xcframework_noidfa.sh @@ -127,7 +127,7 @@ jobs: needs: [build-framework, build-static-framework, build-noidfa-framework, build-static-noidfa-framework] steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - 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 2e6e534eb..bb594cba0 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -10,7 +10,7 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - 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 a621c4fcc..38b7f9842 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@v3 + uses: actions/checkout@v4 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: