Skip to content

Commit 7e7252d

Browse files
committed
Fix GitHub Actions workflow for Node.js 20 compatibility
- Update workflow to use Node.js 20 instead of 18 - Fix markdownlint-cli2 v0.18.1 engine requirements - Bump version to 2.0.2
1 parent 9991cd4 commit 7e7252d

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node.js
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: '18'
25+
node-version: '20'
2626
cache: 'npm'
2727

2828
- name: Install npm dependencies

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bounded Contribution Policy
22

3-
**Version 2.0.1** | [Changelog](docs/CHANGELOG.md)
3+
**Version 2.0.2** | [Changelog](docs/CHANGELOG.md)
44

55
## Our Standards
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ the project move forward. It's not about limiting people—it's about channellin
3333

3434
The OpenPhysical Foundation uses this policy as a standards body to maintain focus on technical specifications and implementation details.
3535

36-
**Current Version: 2.0.1** ([See Changelog](docs/CHANGELOG.md))
36+
**Current Version: 2.0.2** ([See Changelog](docs/CHANGELOG.md))
3737

3838
## 📊 At a Glance
3939

docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to the Bounded Contribution Policy framework will be documen
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.2] - 2025-08-17
9+
10+
### Fixed
11+
12+
- Updated GitHub Actions workflow to use Node.js 20 instead of 18 to meet markdownlint-cli2 requirements
13+
- Ensured workflow compatibility with latest pre-commit and markdownlint-cli2 versions
14+
815
## [2.0.1] - 2025-08-17
916

1017
### Changed
@@ -119,6 +126,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
119126
- **Implementation Resources**: Guides for adoption, customization, and platform integration
120127
- **Examples**: Real-world scenarios showing policy application
121128

129+
[2.0.2]: https://github.com/OpenPhysical/BoundedContributionPolicy/compare/v2.0.1...v2.0.2
122130
[2.0.1]: https://github.com/OpenPhysical/BoundedContributionPolicy/compare/v2.0.0...v2.0.1
123131
[2.0.0]: https://github.com/OpenPhysical/BoundedContributionPolicy/compare/v1.2.0...v2.0.0
124132
[1.2.0]: https://github.com/OpenPhysical/BoundedContributionPolicy/compare/v1.1.0...v1.2.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bounded-contribution-policy",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "A technical collaboration framework that maintains project focus through clear contribution guidelines and neutral evaluation criteria. Alternative to traditional codes of conduct for technical projects.",
55
"scripts": {
66
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\"",

0 commit comments

Comments
 (0)