Skip to content

Commit a568d20

Browse files
authored
Merge pull request #62 from HardNorth/develop
Release
2 parents e627d02 + 7c6882b commit a568d20

8 files changed

Lines changed: 146 additions & 84 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Node.js
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 20
23+
node-version: 24
2424

2525
- name: Install dependencies
2626
run: npm ci

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Node.js
3333
uses: actions/setup-node@v4
3434
with:
35-
node-version: 20
35+
node-version: 24
3636

3737
- name: Setup git credentials
3838
run: |

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## [Unreleased]
4+
- Node.js version updated on 24, by @ijsvogelaar
45

56
## [1.4.0]
67
### Changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Version generation for GitHub Actions
1+
# Version generation and bumping for GitHub Actions
22

3-
![CI Build](https://github.com/HardNorth/github-version-generate/workflows/CI%20Build/badge.svg?branch=master)
3+
[![CI Build](https://github.com/HardNorth/github-version-generate/actions/workflows/ci.yml/badge.svg)](https://github.com/HardNorth/github-version-generate/actions/workflows/ci.yml)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-brightgreen.svg)](https://opensource.org/licenses/Apache-2.0)
55

66
> Please star this repository if you like the application, it will help more people see it. Thank you!
77
88
A GitHub action for reading, bumping, generating, formatting applications versions in release pipelines.
9-
Outputs three environment / output variables:
9+
Outputs four environment / output variables:
1010

1111
- 'env.CURRENT_VERSION' - a current, extracted version of application without any changes
1212
- 'env.RELEASE_VERSION' - a generated release version with `SNAPSHOT` suffix removed by default

README_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Version generation for GitHub Actions
1+
# Version generation and bumping for GitHub Actions
22

3-
![CI Build](https://github.com/HardNorth/github-version-generate/workflows/CI%20Build/badge.svg?branch=master)
3+
[![CI Build](https://github.com/HardNorth/github-version-generate/actions/workflows/ci.yml/badge.svg)](https://github.com/HardNorth/github-version-generate/actions/workflows/ci.yml)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-brightgreen.svg)](https://opensource.org/licenses/Apache-2.0)
55

66
> Please star this repository if you like the application, it will help more people see it. Thank you!
77
88
A GitHub action for reading, bumping, generating, formatting applications versions in release pipelines.
9-
Outputs three environment / output variables:
9+
Outputs four environment / output variables:
1010

1111
- 'env.CURRENT_VERSION' - a current, extracted version of application without any changes
1212
- 'env.RELEASE_VERSION' - a generated release version with `SNAPSHOT` suffix removed by default

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,5 @@ outputs:
153153
description: 'A version prepared for pushing into a repository instead of "CURRENT_VERSION" after release, usually incremented by 1'
154154

155155
runs:
156-
using: 'node20'
156+
using: 'node24'
157157
main: 'build/index.js'

0 commit comments

Comments
 (0)