Skip to content

Commit

Permalink
Merge pull request #1267 from capricorn86/1266-fix-problems-with-the-…
Browse files Browse the repository at this point in the history
…release

chore: [#1266] Try to fix the release
  • Loading branch information
capricorn86 committed Feb 21, 2024
2 parents b306b1a + ad545a0 commit 3222682
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
fetch-depth: 0

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-node-modules
env:
cache-name: cache-node-modules
Expand All @@ -30,7 +30,7 @@ jobs:
key: ${{ runner.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('./packages/*/package-lock.json') }}-${{ hashFiles('./package-lock.json') }}

- name: Cache turbo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-turbo
with:
path: .turbo
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: master

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-node-modules
env:
cache-name: cache-node-modules
Expand Down Expand Up @@ -59,18 +59,18 @@ jobs:
node-version: [20]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: master

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-node-modules
env:
cache-name: cache-node-modules
Expand All @@ -81,7 +81,7 @@ jobs:
key: ${{ runner.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('./packages/*/package-lock.json') }}-${{ hashFiles('./package-lock.json') }}

- name: Cache turbo build setup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .turbo
key: turbo-master-${{ github.sha }}
Expand Down Expand Up @@ -133,18 +133,18 @@ jobs:
node-version: [20]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: master

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-node-modules
env:
cache-name: cache-node-modules
Expand Down

0 comments on commit 3222682

Please sign in to comment.