Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
GH_TOKEN: ${{ secrets.GH_BRANCH_PROTECTION }} # needs to be an admin token to get around branch protection
GH_PR_TOKEN: ${{ secrets.GH_PR_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Yes, we really want to checkout the PR
with:
token: ${{ secrets.GH_BRANCH_PROTECTION }} # needs to be an admin token to get around branch protection
Expand All @@ -33,7 +33,7 @@ jobs:
shell: bash
run: corepack enable

- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
env:
GH_PR_NUM: ${{ github.event.number }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Yes, we really want to checkout the PR
- run: |
if [[ ! -z "${GH_PR_NUM}" ]]; then
Expand All @@ -20,7 +20,7 @@ jobs:
node-version: '18'
- run: corepack enable
- run: corepack prepare [email protected] --activate
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -39,7 +39,7 @@ jobs:
env:
GH_PR_NUM: ${{ github.event.number }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Yes, we really want to checkout the PR
- run: |
if [[ ! -z "${GH_PR_NUM}" ]]; then
Expand All @@ -52,7 +52,7 @@ jobs:
node-version: '18'
- run: corepack enable
- run: corepack prepare [email protected] --activate
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -71,7 +71,7 @@ jobs:
env:
GH_PR_NUM: ${{ github.event.number }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Yes, we really want to checkout the PR
- run: |
if [[ ! -z "${GH_PR_NUM}" ]]; then
Expand All @@ -84,7 +84,7 @@ jobs:
node-version: '18'
- run: corepack enable
- run: corepack prepare [email protected] --activate
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -94,7 +94,7 @@ jobs:
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: packages-cache
name: Cache downloaded packages
with:
Expand Down
Loading