Skip to content

Commit c0e1961

Browse files
committed
Merge remote-tracking branch 'makenew/public' into update-feb20
2 parents 263fb7e + d8f767b commit c0e1961

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Package
3232
run: npm pack
3333
- name: Upload artifact
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: build-${{ github.sha }}
3737
if-no-files-found: error

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
install_dependencies: 'false'
3232
- name: Download artifact
33-
uses: actions/download-artifact@v3
33+
uses: actions/download-artifact@v4
3434
with:
3535
name: ${{ inputs.artifact_name }}
3636
path: .

.github/workflows/check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,24 +78,24 @@ jobs:
7878
with:
7979
node-version: ${{ matrix.node }}
8080
- name: Download artifact
81-
uses: actions/download-artifact@v3
81+
uses: actions/download-artifact@v4
8282
with:
8383
name: ${{ needs.build.outputs.artifact_name }}
8484
path: .
8585
- name: Find packages
86-
uses: tj-actions/glob@v17
86+
uses: tj-actions/glob@v21
8787
id: packages
8888
with:
8989
files: '*.tgz'
9090
- name: Create package.json
91-
uses: DamianReeves/write-file-action@v1.2
91+
uses: DamianReeves/write-file-action@v1.3
9292
with:
9393
write-mode: overwrite
9494
path: package.json
9595
contents: |
9696
{"type":"module"}
9797
- name: Create index.js
98-
uses: DamianReeves/write-file-action@v1.2
98+
uses: DamianReeves/write-file-action@v1.3
9999
with:
100100
write-mode: overwrite
101101
path: index.js

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525
- name: Download artifact
26-
uses: actions/download-artifact@v3
26+
uses: actions/download-artifact@v4
2727
with:
2828
name: ${{ needs.build.outputs.artifact_name }}
2929
path: .
@@ -33,10 +33,10 @@ jobs:
3333
mkdir tmp
3434
outfile=tmp/changelog.txt
3535
echo "outfile=${outfile}" >> $GITHUB_OUTPUT
36-
npx standard-changelog@^2.0.0 --release-count 2 --infile $outfile.tmp --outfile $outfile.tmp
36+
npx standard-changelog@^5.0.0 --release-count 2 --infile $outfile.tmp --outfile $outfile.tmp
3737
sed '1,3d' $outfile.tmp > $outfile
3838
- name: Create GitHub release
39-
uses: softprops/action-gh-release@v1
39+
uses: softprops/action-gh-release@v2
4040
with:
4141
token: ${{ secrets.GH_TOKEN }}
4242
fail_on_unmatched_files: true

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2021-2023 Seam Labs, Inc.
3+
Copyright (c) 2021-2024 Seam Labs, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

0 commit comments

Comments
 (0)