Skip to content

Commit 9dbacea

Browse files
committed
Merge remote-tracking branch 'makenew/public' into ts-6
2 parents 1665f7c + e3c82e8 commit 9dbacea

15 files changed

Lines changed: 3903 additions & 6192 deletions

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ runs:
2020
using: composite
2121
steps:
2222
- name: Setup Node.js
23-
uses: actions/setup-node@v6
23+
uses: actions/setup-node@v7
2424
if: inputs.install_dependencies == 'true'
2525
with:
2626
node-version: ${{ inputs.node_version }}
2727
registry-url: ${{ inputs.registry_url }}
2828
- name: Setup Node.js without cache
29-
uses: actions/setup-node@v6
29+
uses: actions/setup-node@v7
3030
if: inputs.install_dependencies == 'false'
3131
with:
3232
node-version: ${{ inputs.node_version }}

.github/workflows/_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 30
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v7
2525
- name: Setup
2626
uses: ./.github/actions/setup
2727
with:
@@ -31,7 +31,7 @@ jobs:
3131
- name: Package
3232
run: npm pack
3333
- name: Upload artifact
34-
uses: actions/upload-artifact@v6
34+
uses: actions/upload-artifact@v7
3535
with:
3636
name: build-${{ github.sha }}
3737
if-no-files-found: error

.github/workflows/_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
timeout-minutes: 30
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v7
2828
- name: Setup
2929
uses: ./.github/actions/setup
3030
with:
3131
install_dependencies: 'false'
3232
- name: Download artifact
33-
uses: actions/download-artifact@v6
33+
uses: actions/download-artifact@v8
3434
with:
3535
name: ${{ inputs.artifact_name }}
3636
path: .

.github/workflows/check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
os_name: Linux
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v7
3131
- name: Setup
3232
uses: ./.github/actions/setup
3333
with:
@@ -46,7 +46,7 @@ jobs:
4646
- '24'
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v7
5050
- name: Setup
5151
uses: ./.github/actions/setup
5252
with:
@@ -74,11 +74,11 @@ jobs:
7474
os_name: Linux
7575
steps:
7676
- name: Setup Node.js
77-
uses: actions/setup-node@v4
77+
uses: actions/setup-node@v7
7878
with:
7979
node-version: ${{ matrix.node }}
8080
- name: Download artifact
81-
uses: actions/download-artifact@v6
81+
uses: actions/download-artifact@v8
8282
with:
8383
name: ${{ needs.build.outputs.artifact_name }}
8484
path: .
@@ -117,7 +117,7 @@ jobs:
117117
- '24'
118118
steps:
119119
- name: Checkout
120-
uses: actions/checkout@v5
120+
uses: actions/checkout@v7
121121
- name: Setup
122122
uses: ./.github/actions/setup
123123
with:

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
timeout-minutes: 30
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v7
1818
with:
1919
ref: ${{ github.head_ref }}
2020
token: ${{ secrets.GH_TOKEN }}
2121
- name: Import GPG key
22-
uses: crazy-max/ghaction-import-gpg@v6
22+
uses: crazy-max/ghaction-import-gpg@v7
2323
with:
2424
git_user_signingkey: true
2525
git_commit_gpgsign: true

.github/workflows/generate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
timeout-minutes: 30
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v7
1818
with:
1919
ref: ${{ github.head_ref }}
2020
token: ${{ secrets.GH_TOKEN }}
2121
- name: Import GPG key
22-
uses: crazy-max/ghaction-import-gpg@v6
22+
uses: crazy-max/ghaction-import-gpg@v7
2323
with:
2424
git_user_signingkey: true
2525
git_commit_gpgsign: true

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
needs: build
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v7
2323
with:
2424
fetch-depth: 0
2525
- name: Download artifact
26-
uses: actions/download-artifact@v6
26+
uses: actions/download-artifact@v8
2727
with:
2828
name: ${{ needs.build.outputs.artifact_name }}
2929
path: .
@@ -36,7 +36,7 @@ jobs:
3636
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@v2
39+
uses: softprops/action-gh-release@v3
4040
with:
4141
token: ${{ secrets.GH_TOKEN }}
4242
fail_on_unmatched_files: true

.github/workflows/semantic-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
new_release_version: ${{ steps.release.outputs.new_release_version }}
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v7
3131
with:
3232
fetch-depth: 0
3333
- name: Semantic release
@@ -43,7 +43,7 @@ jobs:
4343
if: needs.semantic.outputs.new_release_published == 'true' && needs.semantic.outputs.new_release_version != '1.0.0'
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v7
4747
with:
4848
fetch-depth: 1
4949
- name: Release version ${{ needs.semantic.outputs.new_release_version }} on ${{ github.ref_name }}

.github/workflows/version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v7
2121
with:
2222
token: ${{ secrets.GH_TOKEN }}
2323
- name: Import GPG key
24-
uses: crazy-max/ghaction-import-gpg@v6
24+
uses: crazy-max/ghaction-import-gpg@v7
2525
with:
2626
git_user_signingkey: true
2727
git_commit_gpgsign: true

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)