diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a2d3a9..43e3206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [3.0.0] - 2024-03-10 +### Changed +* Updates the default runtime to node20 +* Use @actions/core 1.10.1 +* Use @actions/github 6.0.0 +* Use node-fetch 3.3.2 +* Update dependencies + ## [2.0.0] - 2023-05-05 ### Changed * Updates the default runtime to node16 @@ -52,7 +60,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ### Added * Execute comment -[Unreleased]: https://github.com/nwtgck/actions-comment-run/compare/v2.0.0...HEAD +[Unreleased]: https://github.com/nwtgck/actions-comment-run/compare/v3.0.0...HEAD +[3.0.0]: https://github.com/nwtgck/actions-comment-run/compare/v2.0.0...v3.0.0 [2.0.0]: https://github.com/nwtgck/actions-comment-run/compare/v1.1.3...v2.0.0 [1.1.3]: https://github.com/nwtgck/actions-comment-run/compare/v1.1.2...v1.1.3 [1.1.2]: https://github.com/nwtgck/actions-comment-run/compare/v1.1.1...v1.1.2 diff --git a/README.md b/README.md index cda8cf4..0cf5257 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: nwtgck/actions-comment-run@v2 + - uses: nwtgck/actions-comment-run@v3 with: github-token: ${{ secrets.GITHUB_TOKEN }} allowed-associations: '["OWNER"]' diff --git a/package-lock.json b/package-lock.json index 0afe3f7..4871ad7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "actions-comment-run", - "version": "2.0.0", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "actions-comment-run", - "version": "2.0.0", + "version": "3.0.0", "license": "MIT", "dependencies": { "@actions/core": "1.10.1", diff --git a/package.json b/package.json index 31e13f4..3afe8bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "actions-comment-run", - "version": "2.0.0", + "version": "3.0.0", "private": true, "description": "Comment run action", "main": "lib/main.js",