Skip to content

Commit

Permalink
[#463] Update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
nkhanh44 committed Apr 11, 2023
1 parent 2833cca commit 0e8cd16
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/automatic_pull_request_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
name: Pull request review by Danger
runs-on: macOS-12
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/cache@v2
- uses: actions/cache@v3
id: bunlderCache
with:
path: vendor/bundle
Expand All @@ -29,7 +29,7 @@ jobs:
run: bundle install --path vendor/bundle

- name: Cache Pods
uses: actions/cache@v2
uses: actions/cache@v3
id: cocoapodCache
with:
path: Pods
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy_app_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -34,21 +34,21 @@ jobs:
runs-on: macOS-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3
# Set fetch-depth (default: 1) to get whole tree
with:
fetch-depth: 0

- name: Install SSH key
uses: webfactory/ssh-agent@v0.5.4
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Bundle install
run: bundle install

- name: Cache Pods
uses: actions/cache@v2
uses: actions/cache@v3
id: cocoapodCache
with:
path: Pods
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy_production_firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -33,21 +33,21 @@ jobs:
name: Build
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Set fetch-depth (default: 1) to get whole tree
with:
fetch-depth: 0

- name: Install SSH key
uses: webfactory/ssh-agent@v0.5.4
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Bundle install
run: bundle install

- name: Cache Pods
uses: actions/cache@v2
uses: actions/cache@v3
id: cocoapodCache
with:
path: Pods
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_staging_firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -33,13 +33,13 @@ jobs:
name: Build
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Set fetch-depth (default: 1) to get whole tree
with:
fetch-depth: 0

- name: Install SSH key
uses: webfactory/ssh-agent@v0.5.4
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_install_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Test
runs-on: macOS-12
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_upload_build_to_test_flight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ jobs:
runs-on: macOS-12
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install SSH key
uses: webfactory/ssh-agent@v0.5.4
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Bundle install
run: bundle install

- name: Cache Pods
uses: actions/cache@v2
uses: actions/cache@v3
id: cocoapodCache
with:
path: Pods
Expand Down

0 comments on commit 0e8cd16

Please sign in to comment.