From d95b4dc11295902d8b1f4b9144a013692fe8a7c8 Mon Sep 17 00:00:00 2001 From: Pranav Yadav Date: Fri, 28 Jul 2023 11:09:00 -0700 Subject: [PATCH] `iOS-Sample` - Bump `actions/checkout@v3.5.3` (#4875) 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-Sample` - Bump `actions/checkout@v3.5.3` Pull Request resolved: https://github.com/facebook/flipper/pull/4875 Test Plan: - Workflow should run and work as usual. Reviewed By: antonk52 Differential Revision: D47868450 Pulled By: passy fbshipit-source-id: 8d1a12c8ec2344355d0f091606b4db13c5187263 --- .github/workflows/iOS-Sample.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/iOS-Sample.yml b/.github/workflows/iOS-Sample.yml index 8ff94db75ff..b530a1fab97 100644 --- a/.github/workflows/iOS-Sample.yml +++ b/.github/workflows/iOS-Sample.yml @@ -1,4 +1,5 @@ name: Build iOS apps +# This action runs on 'git push' and PRs to below specified paths on: push: paths: @@ -21,7 +22,7 @@ jobs: working-directory: iOS/Sample steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.5.3 - name: Install dependencies run: pod install --repo-update - name: Build Sample app @@ -36,7 +37,7 @@ jobs: working-directory: iOS/SampleSwift steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.5.3 - name: Install dependencies run: pod install --repo-update - name: Build SampleSwift app @@ -51,7 +52,7 @@ jobs: working-directory: iOS/Tutorial steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.5.3 - name: Install dependencies run: pod install --repo-update - name: Build Tutorial app