Skip to content

Commit 1743987

Browse files
committed
Update workflow action versions
1 parent 232b5a4 commit 1743987

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Check
33

44
on:
55
push:
6+
branches:
7+
- main
8+
pull_request:
69
branches:
710
- '**'
811

@@ -84,19 +87,19 @@ jobs:
8487
name: ${{ needs.build.outputs.artifact_name }}
8588
path: .
8689
- name: Find packages
87-
uses: tj-actions/glob@v17
90+
uses: tj-actions/glob@v21
8891
id: packages
8992
with:
9093
files: '*.tgz'
9194
- name: Create package.json
92-
uses: DamianReeves/write-file-action@v1.2
95+
uses: DamianReeves/write-file-action@v1.3
9396
with:
9497
write-mode: overwrite
9598
path: package.json
9699
contents: |
97100
{"type":"module"}
98101
- name: Create index.js
99-
uses: DamianReeves/write-file-action@v1.2
102+
uses: DamianReeves/write-file-action@v1.3
100103
with:
101104
write-mode: overwrite
102105
path: index.js

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
mkdir tmp
3636
outfile=tmp/changelog.txt
3737
echo "outfile=${outfile}" >> $GITHUB_OUTPUT
38-
npx standard-changelog@^2.0.0 --release-count 2 --infile $outfile.tmp --outfile $outfile.tmp
38+
npx standard-changelog@^5.0.0 --release-count 2 --infile $outfile.tmp --outfile $outfile.tmp
3939
sed '1,3d' $outfile.tmp > $outfile
4040
- name: Create GitHub release
41-
uses: softprops/action-gh-release@v1
41+
uses: softprops/action-gh-release@v2
4242
with:
4343
token: ${{ secrets.GH_TOKEN }}
4444
fail_on_unmatched_files: true

0 commit comments

Comments
 (0)