Skip to content

Commit

Permalink
Merge branch 'release/3.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Mar 10, 2024
2 parents 9fc2ff9 + 68911e1 commit eef5a91
Show file tree
Hide file tree
Showing 8 changed files with 39,537 additions and 22,330 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/operational-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# 0 indicates all history
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
- run: npm ci
- run: npm run all
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ on:

jobs:
comment-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: nwtgck/actions-comment-run@v1.1
- uses: actions/checkout@v4
- uses: nwtgck/actions-comment-run@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
allowed-associations: '["OWNER"]'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ inputs:
description: Comment author associations allowed to execute scripts (e.g. '["OWNER", "COLLABORATOR"]')
default: '["OWNER"]'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
53,386 changes: 37,422 additions & 15,964 deletions dist/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit eef5a91

Please sign in to comment.