Skip to content

Commit

Permalink
apply workaround from actions/setup-node#531
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Dec 15, 2023
1 parent 5d8abce commit 11a376f
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 39 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-create-redwood-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- run: yarn install
working-directory: ./.github/actions/check_create_redwood_app

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-test-project-fixture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- run: yarn install
working-directory: ./.github/actions/check_test_project_fixture

Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Yarn install
working-directory: ./.github/actions/detect-changes
run: yarn install --inline-builds
Expand All @@ -56,14 +56,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Yarn install
working-directory: ./tasks/check
run: yarn install --inline-builds
Expand Down Expand Up @@ -100,14 +100,14 @@ jobs:

- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -160,14 +160,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -256,14 +256,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -462,14 +462,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -521,14 +521,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -618,14 +618,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
with:
fetch-depth: 0

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ jobs:
# This is required because lerna uses tags to determine the version.
fetch-depth: 0

- name: Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-all-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
with:
token: ${{ secrets.JTOAR_TOKEN }}

- name: Enable Corepack
run: corepack enable

- uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- run: yarn install

- name: Update all contributors
Expand Down

0 comments on commit 11a376f

Please sign in to comment.