|
7 | 7 | env: |
8 | 8 | GH_PR_NUM: ${{ github.event.number }} |
9 | 9 | steps: |
10 | | - - uses: actions/checkout@v2 |
| 10 | + - uses: actions/checkout@v4 |
11 | 11 | # Yes, we really want to checkout the PR |
12 | 12 | - run: | |
13 | 13 | if [[ ! -z "${GH_PR_NUM}" ]]; then |
|
20 | 20 | node-version: '18' |
21 | 21 | - run: corepack enable |
22 | 22 | - run: corepack prepare [email protected] --activate |
23 | | - - uses: actions/cache@v2 |
| 23 | + - uses: actions/cache@v4 |
24 | 24 | id: yarn-cache |
25 | 25 | name: Cache npm deps |
26 | 26 | with: |
|
39 | 39 | env: |
40 | 40 | GH_PR_NUM: ${{ github.event.number }} |
41 | 41 | steps: |
42 | | - - uses: actions/checkout@v2 |
| 42 | + - uses: actions/checkout@v4 |
43 | 43 | # Yes, we really want to checkout the PR |
44 | 44 | - run: | |
45 | 45 | if [[ ! -z "${GH_PR_NUM}" ]]; then |
|
52 | 52 | node-version: '18' |
53 | 53 | - run: corepack enable |
54 | 54 | - run: corepack prepare [email protected] --activate |
55 | | - - uses: actions/cache@v2 |
| 55 | + - uses: actions/cache@v4 |
56 | 56 | id: yarn-cache |
57 | 57 | name: Cache npm deps |
58 | 58 | with: |
|
71 | 71 | env: |
72 | 72 | GH_PR_NUM: ${{ github.event.number }} |
73 | 73 | steps: |
74 | | - - uses: actions/checkout@v2 |
| 74 | + - uses: actions/checkout@v4 |
75 | 75 | # Yes, we really want to checkout the PR |
76 | 76 | - run: | |
77 | 77 | if [[ ! -z "${GH_PR_NUM}" ]]; then |
|
84 | 84 | node-version: '18' |
85 | 85 | - run: corepack enable |
86 | 86 | - run: corepack prepare [email protected] --activate |
87 | | - - uses: actions/cache@v2 |
| 87 | + - uses: actions/cache@v4 |
88 | 88 | id: yarn-cache |
89 | 89 | name: Cache npm deps |
90 | 90 | with: |
|
94 | 94 | key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }} |
95 | 95 | - run: yarn install --frozen-lockfile |
96 | 96 | if: steps.yarn-cache.outputs.cache-hit != 'true' |
97 | | - - uses: actions/cache@v2 |
| 97 | + - uses: actions/cache@v4 |
98 | 98 | id: packages-cache |
99 | 99 | name: Cache downloaded packages |
100 | 100 | with: |
|
0 commit comments