Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4
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]>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent f6eee7c commit 9c1c013
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 33 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-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- name: Install SentryCli
run: brew install getsentry/tools/sentry-cli
Expand Down Expand Up @@ -83,7 +83,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 @@ -99,7 +99,7 @@ jobs:
runs-on: macos-12
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- uses: actions/cache@v3
id: app-plain-cache
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Release Build of iOS Swift
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh

- name: Run Fastlane
Expand All @@ -49,7 +49,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 @@ -66,7 +66,7 @@ jobs:
name: Sample watchOS
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- run: make build-for-watchos

Expand All @@ -83,7 +83,7 @@ jobs:
name: Build & Validate XCFramework
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make build-xcframework
shell: sh
- run: make build-xcframework-sample
Expand All @@ -102,7 +102,7 @@ jobs:
name: Build & Validate Framework
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh 12.5.1
- run: make build-framework
shell: sh
Expand All @@ -124,7 +124,7 @@ jobs:
name: Validate Swift Package Manager
runs-on: macos-12
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 @@ -141,7 +141,7 @@ jobs:
name: Validate Swift Package Manager Dynamic
runs-on: macos-11
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 @@ -158,6 +158,6 @@ jobs:
name: Build with Swift
runs-on: macos-12
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 @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@18fe527fa8b29f134bb91f32f1a5dc5abb15ed7f # 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-11
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Clang-Format
run: brew install clang-format
- name: Format Code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: macos-11
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'Alamofire/Alamofire'
ref: 'f82c23a8a7ef8dc1a49a8bfc6a96883e79121864'
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.app/Contents/Developer
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'home-assistant/iOS'
ref: '6d6606aed63a778c5a2bd64f8981823433a7f2fa'
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
runs-on: macos-12
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'videolan/vlc-ios'
ref: '5d2b5505edc3387cad43deca14c0bd0b19e3f133'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
name: Swift Lint
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run SwiftLint
run: swiftlint

xcode-analyze:
name: Xcode Analyze
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- run: make analyze

Expand All @@ -47,7 +47,7 @@ jobs:
platform: ['ios', 'macos', 'tvos', 'watchos']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- name: Validate Podspec
run: pod lib lint --verbose --platforms=${{ matrix.platform }}
Expand All @@ -57,5 +57,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 @@ -10,7 +10,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
- name: Install SentryCli
run: brew install getsentry/tools/sentry-cli
Expand Down Expand Up @@ -79,7 +79,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 @@ -32,7 +32,7 @@ jobs:
xcode: '13.4.1'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh ${{matrix.xcode}}
- name: Install SentryCli
run: brew install getsentry/tools/sentry-cli
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
suite: 'iOS-10'

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

- uses: actions/download-artifact@v3
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Build test server
runs-on: macos-12
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 @@ -127,7 +127,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 @@ -195,7 +195,7 @@ jobs:
timeout-minutes: 20

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

- name: Cache for Test Server
uses: actions/cache@v3
Expand Down Expand Up @@ -230,7 +230,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 All @@ -255,7 +255,7 @@ jobs:
device: 'iPhone 8 (14.5)'

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 @@ -272,7 +272,7 @@ jobs:
target: ['ios_swift', 'ios_objc', 'tvos_swift']

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

# GH action images don't have an iOS 12.4 simulator. Therefore we have to download and install the simulator manually.
- name: Install iOS 12.4 simulator
Expand All @@ -291,7 +291,7 @@ jobs:
runs-on: macos-12

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh 13.4.1

# 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 @@ -15,7 +15,7 @@ jobs:
name: Build and Upload iOS-Swift to Testflight
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- run: bundle install

Expand Down

0 comments on commit 9c1c013

Please sign in to comment.