Skip to content

Commit a3c55da

Browse files
Upgrade workflows
1 parent c4c7e04 commit a3c55da

File tree

6 files changed

+16
-68
lines changed

6 files changed

+16
-68
lines changed

.github/codeql-config.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/nodejs.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ on: [push, workflow_dispatch]
44

55
jobs:
66
test:
7-
87
runs-on: ubuntu-latest
98

109
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
13-
with:
14-
node-version: 16
15-
- run: npm install
16-
- run: npm test
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: 22
14+
- run: npm install
15+
- run: npm test

.github/workflows/playground.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
11-
- uses: actions/setup-node@v3
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
1212
with:
13-
node-version: 16
13+
node-version: 22
1414

1515
- name: Hello
1616
run: |
1717
echo "Hello World!"
18-
19-

.github/workflows/release.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,33 @@ on:
44
workflow_dispatch:
55
inputs:
66
semverType:
7-
description: 'Semver Type'
7+
description: 'Semver Type'
88
required: true
99
default: 'patch'
1010

1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/setup-node@v3
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
1717
with:
18-
node-version: 16
18+
node-version: 22
1919

2020
- name: General setup and install dependencies
2121
run: |
2222
git config --global user.name 'Release Bot'
2323
git config --global user.email '[email protected]'
2424
npm ci
25-
25+
2626
- name: Build and update version
2727
run: |
2828
echo "Type: ${{ github.event.inputs.semverType }}"
2929
npm version ${{ github.event.inputs.semverType }}
30-
30+
3131
- name: Deploy and publish
3232
run: |
3333
echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
3434
npm run deploy
3535
env:
3636
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
37-
38-

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v3
10+
- uses: actions/stale@v9
1111
with:
1212
stale-issue-message: 'This issue will soon be closed since issues in this project are mainly meant to be bugs or feature requests. Questions are directed to stackoverflow.'
1313
stale-issue-label: 'stale'

0 commit comments

Comments
 (0)