Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 3 to 4 #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
- 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-13
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 @@ -24,7 +24,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

- name: Run Fastlane
Expand All @@ -51,7 +51,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 @@ -68,7 +68,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 @@ -85,7 +85,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 @@ -111,7 +111,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 @@ -126,7 +126,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 @@ -143,7 +143,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 @@ -160,6 +160,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
- name: Install SentryCli
run: brew install getsentry/tools/sentry-cli
Expand Down Expand Up @@ -84,7 +84,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}}
- name: Install SentryCli
run: brew install getsentry/tools/sentry-cli
Expand Down Expand Up @@ -114,7 +114,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 @@ -143,7 +143,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 @@ -251,7 +251,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 @@ -286,7 +286,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 @@ -320,7 +320,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 @@ -342,7 +342,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
- run: bundle install

Expand Down
Loading