Skip to content

Commit 8a6c909

Browse files
committed
Update all action versions
1 parent 0e9e338 commit 8a6c909

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ runs:
2323
using: composite
2424
steps:
2525
- name: Setup Node.js
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
if: inputs.install_dependencies == 'true'
2828
with:
2929
cache: npm
3030
node-version: ${{ inputs.node_version }}
3131
registry-url: ${{ inputs.registry_url }}
3232
- name: Setup Node.js without cache
33-
uses: actions/setup-node@v3
33+
uses: actions/setup-node@v4
3434
if: inputs.install_dependencies == 'false'
3535
with:
3636
node-version: ${{ inputs.node_version }}

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
timeout-minutes: 30
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
- name: Setup
3030
uses: ./.github/actions/setup
3131
with:

.github/workflows/_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 30
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
- name: Setup
3232
uses: ./.github/actions/setup
3333
with:
@@ -42,7 +42,7 @@ jobs:
4242
id: meta
4343
run: echo "tgz=$(ls *.tgz | head -n1)" >> $GITHUB_OUTPUT
4444
- name: Publish
45-
uses: JS-DevTools/npm-publish@v2
45+
uses: JS-DevTools/npm-publish@v3
4646
with:
4747
access: restricted
4848
token: ${{ secrets.registry_token }}

.github/workflows/check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
os_name: Linux
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
- name: Setup
2929
uses: ./.github/actions/setup
3030
with:
@@ -44,7 +44,7 @@ jobs:
4444
- '20'
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
- name: Setup
4949
uses: ./.github/actions/setup
5050
with:
@@ -75,7 +75,7 @@ jobs:
7575
os_name: Linux
7676
steps:
7777
- name: Setup Node.js
78-
uses: actions/setup-node@v3
78+
uses: actions/setup-node@v4
7979
with:
8080
node-version: ${{ matrix.node }}
8181
- name: Download artifact
@@ -84,7 +84,7 @@ jobs:
8484
name: ${{ needs.build.outputs.artifact_name }}
8585
path: .
8686
- name: Find packages
87-
uses: tj-actions/glob@v16
87+
uses: tj-actions/glob@v17
8888
id: packages
8989
with:
9090
files: '*.tgz'
@@ -129,7 +129,7 @@ jobs:
129129
- '20'
130130
steps:
131131
- name: Checkout
132-
uses: actions/checkout@v3
132+
uses: actions/checkout@v4
133133
- name: Setup
134134
uses: ./.github/actions/setup
135135
with:

.github/workflows/format.yml

Lines changed: 3 additions & 3 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@v3
17+
uses: actions/checkout@v4
1818
with:
1919
ref: ${{ github.head_ref }}
2020
token: ${{ secrets.GH_TOKEN }}
2121
- name: Import GPG key
22-
uses: crazy-max/ghaction-import-gpg@v5
22+
uses: crazy-max/ghaction-import-gpg@v6
2323
with:
2424
git_user_signingkey: true
2525
git_commit_gpgsign: true
@@ -34,7 +34,7 @@ jobs:
3434
- name: Format
3535
run: npm run format
3636
- name: Commit
37-
uses: stefanzweifel/git-auto-commit-action@v4
37+
uses: stefanzweifel/git-auto-commit-action@v5
3838
if: always()
3939
with:
4040
commit_message: 'ci: Format code'

.github/workflows/generate.yml

Lines changed: 3 additions & 3 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@v3
17+
uses: actions/checkout@v4
1818
with:
1919
ref: ${{ github.head_ref }}
2020
token: ${{ secrets.GH_TOKEN }}
2121
- name: Import GPG key
22-
uses: crazy-max/ghaction-import-gpg@v5
22+
uses: crazy-max/ghaction-import-gpg@v6
2323
with:
2424
git_user_signingkey: true
2525
git_commit_gpgsign: true
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }}
3838
- name: Commit
39-
uses: stefanzweifel/git-auto-commit-action@v4
39+
uses: stefanzweifel/git-auto-commit-action@v5
4040
with:
4141
commit_message: 'ci: Generate code'
4242
commit_user_name: ${{ secrets.GIT_USER_NAME }}

.github/workflows/makenew.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
needs: repository
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343
with:
4444
fetch-depth: 0
4545
token: ${{ secrets.GH_TOKEN }}
4646
- name: Import GPG key
47-
uses: crazy-max/ghaction-import-gpg@v5
47+
uses: crazy-max/ghaction-import-gpg@v6
4848
with:
4949
git_user_signingkey: true
5050
git_commit_gpgsign: true
@@ -68,7 +68,7 @@ jobs:
6868
env:
6969
ORIGIN: https://github.com/seamapi/${{ github.event.inputs.repo }}.git
7070
- name: Commit
71-
uses: stefanzweifel/git-auto-commit-action@v4
71+
uses: stefanzweifel/git-auto-commit-action@v5
7272
with:
7373
branch: main
7474
skip_fetch: true

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
needs: build
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727
- name: Download artifact

.github/workflows/semantic-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
new_release_version: ${{ steps.release.outputs.new_release_version }}
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- name: Semantic release
@@ -38,7 +38,7 @@ jobs:
3838
if: ${{ needs.semantic.outputs.new_release_published == 'true' }}
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
fetch-depth: 1
4444
- name: Release version ${{ steps.release.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@v3
20+
uses: actions/checkout@v4
2121
with:
2222
token: ${{ secrets.GH_TOKEN }}
2323
- name: Import GPG key
24-
uses: crazy-max/ghaction-import-gpg@v5
24+
uses: crazy-max/ghaction-import-gpg@v6
2525
with:
2626
git_user_signingkey: true
2727
git_commit_gpgsign: true

0 commit comments

Comments
 (0)