chore(repo): update gh actions version (#30561)
This PR bumps the versions of `actions/*` GH actions to latest v4. ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
This commit is contained in:
parent
ee43b8b945
commit
b82f29bd56
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
@ -26,15 +26,15 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
filter: tree:0
|
||||||
|
|
||||||
- name: Fetch Master
|
- name: Fetch Master
|
||||||
run: git fetch origin master:master
|
run: git fetch origin master:master
|
||||||
if: ${{ github.event_name == 'pull_request' }}
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
|
||||||
|
|
||||||
- name: Set SHAs
|
- name: Set SHAs
|
||||||
uses: nrwl/nx-set-shas@v4
|
uses: nrwl/nx-set-shas@v4
|
||||||
with:
|
with:
|
||||||
@ -73,7 +73,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
pids=()
|
pids=()
|
||||||
|
|
||||||
pnpm nx-cloud record -- nx format:check --base=$NX_BASE --head=$NX_HEAD &
|
pnpm nx-cloud record -- nx format:check &
|
||||||
pids+=($!)
|
pids+=($!)
|
||||||
|
|
||||||
pnpm nx-cloud record -- nx sync:check
|
pnpm nx-cloud record -- nx sync:check
|
||||||
@ -85,7 +85,7 @@ jobs:
|
|||||||
pnpm nx run-many -t check-imports check-commit check-lock-files check-codeowners --parallel=1 --no-dte &
|
pnpm nx run-many -t check-imports check-commit check-lock-files check-codeowners --parallel=1 --no-dte &
|
||||||
pids+=($!)
|
pids+=($!)
|
||||||
|
|
||||||
pnpm nx affected --targets=lint,test,build,e2e,e2e-ci --base=$NX_BASE --head=$NX_HEAD &
|
pnpm nx affected --targets=lint,test,build,e2e,e2e-ci &
|
||||||
pids+=($!)
|
pids+=($!)
|
||||||
|
|
||||||
for pid in "${pids[@]}"; do
|
for pid in "${pids[@]}"; do
|
||||||
@ -102,16 +102,17 @@ jobs:
|
|||||||
SELECTED_PM: 'npm'
|
SELECTED_PM: 'npm'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
filter: tree:0
|
||||||
|
|
||||||
- name: Fetch Master
|
- name: Fetch Master
|
||||||
run: git fetch origin master:master
|
run: git fetch origin master:master
|
||||||
if: ${{ github.event_name == 'pull_request' }}
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
|
||||||
- name: Restore Homebrew packages
|
- name: Restore Homebrew packages
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
/usr/local/Homebrew
|
/usr/local/Homebrew
|
||||||
@ -126,7 +127,7 @@ jobs:
|
|||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
|
|
||||||
- name: Save Homebrew Cache
|
- name: Save Homebrew Cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
/usr/local/Homebrew
|
/usr/local/Homebrew
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user