Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#3267)
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent 5616e0a commit 9fa25c2
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmarking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand All @@ -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

Expand All @@ -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
Expand All @@ -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 }}
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/profile-data-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/saucelabs-UI-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
suite: 'iOS-12'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
needs: [build-test-server]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9fa25c2

Please sign in to comment.