js - Bump actions/- setup-node@v3.6.0, checkout@v3.5.3 & nick-fields/retry@v2.8.3 (#4872)

Summary:
This diff bumps `actions/checkout@v3.5.3`, `actions/setup-node@v3.6.0`, and `nick-fields/retry@v2.8.3`

### Ref.:
- `actions/checkout@v3.5.3` changelog: https://github.com/actions/checkout/releases/tag/v3.5.3
- `actions/setup-node@v3.6.0` changelog: https://github.com/actions/setup-node/releases/tag/v3.6.0
- `nick-fields/retry@v2.8.3` changelog: https://github.com/nick-fields/retry/releases/tag/v2.8.3

## Changelog:

[GENERAL] [SECURITY] - [Actions] `js` - Bump `actions/`- `checkout@v3.5.3`, `setup-node@v3.6.0`, & `nick-fields/retry@v2.8.3`

Pull Request resolved: https://github.com/facebook/flipper/pull/4872

Test Plan: - Workflow should run and work as usual.

Reviewed By: ivanmisuno

Differential Revision: D47090375

Pulled By: passy

fbshipit-source-id: 8e3852620dc9439e9d26e26daa87c7cb2cc258d0
This commit is contained in:
Pranav Yadav
2023-06-28 11:12:53 -07:00
committed by Facebook GitHub Bot
parent 985f7d1354
commit 65e515bdaa

View File

@@ -1,5 +1,5 @@
name: js-flipper name: js-flipper
# This action runs on 'git push' and PRs
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
@@ -9,12 +9,12 @@ jobs:
working-directory: js/js-flipper working-directory: js/js-flipper
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3.6.0
with: with:
node-version: '16.x' node-version: '16.x'
- name: yarn install (with retry) - name: yarn install (with retry)
uses: nick-invision/retry@v2.6.0 uses: nick-fields/retry@v2.8.3
with: with:
command: cd js/js-flipper && yarn command: cd js/js-flipper && yarn
timeout_minutes: 30 timeout_minutes: 30
@@ -30,12 +30,12 @@ jobs:
working-directory: js/react-flipper-example working-directory: js/react-flipper-example
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3.6.0
with: with:
node-version: '16.x' node-version: '16.x'
- name: js-flipper - yarn install (with retry) - name: js-flipper - yarn install (with retry)
uses: nick-invision/retry@v2.6.0 uses: nick-fields/retry@v2.8.3
with: with:
command: cd js/js-flipper && yarn command: cd js/js-flipper && yarn
timeout_minutes: 30 timeout_minutes: 30
@@ -44,7 +44,7 @@ jobs:
run: yarn build run: yarn build
working-directory: js/js-flipper working-directory: js/js-flipper
- name: yarn install (with retry) - name: yarn install (with retry)
uses: nick-invision/retry@v2.6.0 uses: nick-fields/retry@v2.8.3
with: with:
command: cd js/react-flipper-example && yarn command: cd js/react-flipper-example && yarn
timeout_minutes: 30 timeout_minutes: 30