Summary: This diff bumps `actions/checkout@v3.5.3` ### Ref.: - `actions/checkout@v3.5.3` changelog: https://github.com/actions/checkout/releases/tag/v3.5.3 ## Changelog: [GENERAL] [SECURITY] - [Actions] `iOS-dependent-pod-lint` - Bump `actions/checkout@v3.5.3` Pull Request resolved: https://github.com/facebook/flipper/pull/4876 Test Plan: - Workflow should run and work as usual. Reviewed By: antonk52 Differential Revision: D47868449 Pulled By: passy fbshipit-source-id: 31eae8adbc0e169e9f154618c20f1b2478483a51
35 lines
955 B
YAML
35 lines
955 B
YAML
name: Validate Dependent Podspecs
|
|
# This action runs on push and PRs to below specified paths
|
|
on:
|
|
push:
|
|
paths:
|
|
- "iOS/Podspecs/**"
|
|
pull_request:
|
|
paths:
|
|
- "iOS/Podspecs/**"
|
|
|
|
jobs:
|
|
lint-flipper_folly_pod:
|
|
runs-on: macos-latest
|
|
defaults:
|
|
run:
|
|
working-directory: iOS/Podspecs
|
|
steps:
|
|
- uses: actions/checkout@v3.5.3
|
|
- name: Install Dependences
|
|
run: pod repo update
|
|
- name: Lint Folly
|
|
run: pod spec lint Flipper-Folly.podspec --use-libraries --allow-warnings --verbose --skip-import-validation
|
|
|
|
lint-flipper_peertalk_pod:
|
|
runs-on: macos-latest
|
|
defaults:
|
|
run:
|
|
working-directory: iOS/Podspecs
|
|
steps:
|
|
- uses: actions/checkout@v3.5.3
|
|
- name: Install Dependences
|
|
run: pod repo update
|
|
- name: Lint Peertalk
|
|
run: pod spec lint Flipper-PeerTalk.podspec --use-libraries --allow-warnings --verbose --skip-import-validation
|