Skip to content

Commit 09f599e

Browse files
authored
Merge pull request #5461 from JedWatson/alex/changesets-action
Update changesets action
2 parents 3a6302d + e43ae39 commit 09f599e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,21 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout Repo
21-
uses: actions/checkout@master
21+
uses: actions/checkout@v3
2222
with:
2323
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2424
fetch-depth: 0
2525

2626
- name: Setup Node.js 16.x
27-
uses: actions/setup-node@master
27+
uses: actions/setup-node@v3
2828
with:
2929
node-version: 16.x
3030

31-
- name: Install Yarn
32-
run: npm install --global yarn
33-
3431
- name: Install Dependencies
3532
run: yarn
3633

3734
- name: Create Release Pull Request or Publish to npm
38-
uses: changesets/action@master
35+
uses: changesets/action@v1
3936
with:
4037
publish: yarn release
4138
env:

0 commit comments

Comments
 (0)