From 9fa25c2f47d973ec4c113a10a8c81002d832a4be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:34:22 +0200 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 (#3267) 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> --- .github/workflows/benchmarking.yml | 6 +++--- .github/workflows/build.yml | 16 ++++++++-------- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/format-code.yml | 2 +- .github/workflows/lint.yml | 10 +++++----- .github/workflows/profile-data-generator.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/saucelabs-UI-tests.yml | 4 ++-- .github/workflows/test.yml | 12 ++++++------ .github/workflows/testflight.yml | 2 +- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/benchmarking.yml b/.github/workflows/benchmarking.yml index d95e502565f..5c8f5595993 100644 --- a/.github/workflows/benchmarking.yml +++ b/.github/workflows/benchmarking.yml @@ -25,7 +25,7 @@ jobs: name: Build app and test runner runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - uses: ruby/setup-ruby@v1 with: @@ -86,7 +86,7 @@ jobs: matrix: suite: ['High-end device', 'Mid-range device', 'Low-end device'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: name: DerivedData-Xcode @@ -102,7 +102,7 @@ jobs: runs-on: macos-13 steps: - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a547dce9598..4ad424c1a36 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: name: Release Build of iOS Swift runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - uses: ruby/setup-ruby@v1 with: @@ -54,7 +54,7 @@ jobs: - iOS13-Swift steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh # Disable code signing. We just want to make sure these compile. @@ -71,7 +71,7 @@ jobs: name: Sample watchOS runs-on: macos-12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh 13.4.1 - run: make build-for-watchos @@ -88,7 +88,7 @@ jobs: name: Build XCFramework runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - run: make build-xcframework shell: sh @@ -114,7 +114,7 @@ jobs: runs-on: macos-13 needs: build-xcframework steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: name: ${{ github.sha }} @@ -129,7 +129,7 @@ jobs: name: Validate Swift Package Manager runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set SPM revision to current git commit run: >- if [[ "${{ github.event.pull_request.head.sha }}" != "" ]]; then @@ -146,7 +146,7 @@ jobs: name: Validate Swift Package Manager Dynamic runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set SPM revision to current git commit run: >- if [[ "${{ github.event.pull_request.head.sha }}" != "" ]]; then @@ -163,6 +163,6 @@ jobs: name: Build with Swift runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: swift build shell: sh diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 33e191a4f92..0c962d348a0 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # pin@v2 diff --git a/.github/workflows/format-code.yml b/.github/workflows/format-code.yml index ab01941efe7..7822ba454f9 100644 --- a/.github/workflows/format-code.yml +++ b/.github/workflows/format-code.yml @@ -15,7 +15,7 @@ jobs: name: Format Code runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 ## Update internal list of formulae to the latest - run: brew update - name: Install Clang-Format diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e517e72464f..a9bf5432e41 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,7 @@ jobs: name: Swift Lint runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: swiftlint --version - name: Run SwiftLint run: swiftlint --strict @@ -37,7 +37,7 @@ jobs: name: Xcode Analyze runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - run: make analyze @@ -51,7 +51,7 @@ jobs: library_type: ['dynamic', 'static'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh # We need to update the spec-repo, because it can happen that it is not up to date and then the lint fails. - run: pod repo update @@ -63,7 +63,7 @@ jobs: runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - run: pod repo update - name: Validate HybridPod Podspec @@ -73,5 +73,5 @@ jobs: name: No changes in high risk files runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/no-changes-in-high-risk-files.sh diff --git a/.github/workflows/profile-data-generator.yml b/.github/workflows/profile-data-generator.yml index 8244e93c71b..0350a70b5ea 100644 --- a/.github/workflows/profile-data-generator.yml +++ b/.github/workflows/profile-data-generator.yml @@ -15,7 +15,7 @@ jobs: name: Build app and test runner runs-on: macos-12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh 13.4.1 - uses: ruby/setup-ruby@v1 with: @@ -87,7 +87,7 @@ jobs: matrix: suite: ['High-end device', 'Mid-range device'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: name: data-generator-build-products diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a1b4871edb..dc74d830a19 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: name: 'Release a new version' steps: - name: Check out current commit (${{ github.sha }}) - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: token: ${{ secrets.GH_RELEASE_PAT }} fetch-depth: 0 diff --git a/.github/workflows/saucelabs-UI-tests.yml b/.github/workflows/saucelabs-UI-tests.yml index f7931edeb42..de3d5701a81 100644 --- a/.github/workflows/saucelabs-UI-tests.yml +++ b/.github/workflows/saucelabs-UI-tests.yml @@ -37,7 +37,7 @@ jobs: xcode: '14.3' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh ${{matrix.xcode}} - uses: ruby/setup-ruby@v1 with: @@ -117,7 +117,7 @@ jobs: suite: 'iOS-12' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d0b1bac777f..bd0f26ed8e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: name: Build test server runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache for Test Server id: cache_test_server uses: actions/cache@v3 @@ -142,7 +142,7 @@ jobs: test-destination-os: "latest" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: name: test-server @@ -253,7 +253,7 @@ jobs: needs: [build-test-server] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: @@ -284,7 +284,7 @@ jobs: target: ["ios_swift", "ios_objc", "tvos_swift"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh # GitHub Actions sometimes fail to launch the UI tests. Therefore we retry @@ -318,7 +318,7 @@ jobs: device: "iPhone 8 (16.1)" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh ${{matrix.xcode}} # GitHub Actions sometimes fail to launch the UI tests. Therefore we retry @@ -340,7 +340,7 @@ jobs: runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh # GitHub Actions sometimes fail to launch the UI tests. Therefore we retry diff --git a/.github/workflows/testflight.yml b/.github/workflows/testflight.yml index ab12b0a6722..852fa4b2f7a 100644 --- a/.github/workflows/testflight.yml +++ b/.github/workflows/testflight.yml @@ -20,7 +20,7 @@ jobs: name: Build and Upload iOS-Swift to Testflight runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: ./scripts/ci-select-xcode.sh - uses: ruby/setup-ruby@v1 with: