Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.

Commit b44c068

Browse files
authored
Merge pull request #43 from zwaldowski/package-release-for-node24
Package release for node24 upgrade
2 parents a6a8309 + eb263cc commit b44c068

8 files changed

Lines changed: 31864 additions & 26530 deletions

File tree

.eslintrc.json

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

.github/workflows/test.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- master
6+
- main
77
jobs:
88
test:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
12-
- run: npm ci
13-
- run: npm test
11+
- uses: actions/checkout@v6
12+
- run: npm ci
13+
- run: npm test
14+
- name: Self-test
15+
id: semver
16+
uses: ./
17+
with:
18+
bump: patch
19+
github_token: ${{ secrets.GITHUB_TOKEN }}
20+
dry_run: true
21+
- name: Output version
22+
run: echo "New version is ${{ steps.semver.outputs.version }}"

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ outputs:
3434
version_tag:
3535
description: 'The version string used to create the tag.'
3636
runs:
37-
using: 'node20'
37+
using: 'node24'
3838
main: 'dist/index.js'
3939
branding:
4040
icon: 'tag'

0 commit comments

Comments
 (0)