Skip to content

Commit

Permalink
Merge pull request #62 from peter-evans/v2
Browse files Browse the repository at this point in the history
Update runtime to node 16
  • Loading branch information
peter-evans committed Mar 22, 2022
2 parents 2dc3b39 + d261a41 commit 1769778
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 40 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Expand Up @@ -14,20 +14,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16.x
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm run lint
- run: npm run test
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: action.yml
path: action.yml
Expand All @@ -39,14 +39,14 @@ jobs:
matrix:
target: [built, committed]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- if: matrix.target == 'built' || github.event_name == 'pull_request'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dist
path: dist
- if: matrix.target == 'built' || github.event_name == 'pull_request'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: action.yml
path: .
Expand Down Expand Up @@ -127,8 +127,8 @@ jobs:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/dependabot.yml
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
labels:
- "dependencies"
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -12,7 +12,7 @@ The action will output the comment ID of the comment matching the search criteri

```yml
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: 1
Expand All @@ -23,7 +23,7 @@ The action will output the comment ID of the comment matching the search criteri

```yml
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: 1
Expand All @@ -34,7 +34,7 @@ The action will output the comment ID of the comment matching the search criteri

```yml
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: 1
Expand All @@ -46,7 +46,7 @@ The action will output the comment ID of the comment matching the search criteri

```yml
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: 1
Expand Down Expand Up @@ -76,7 +76,7 @@ e.g. If `comment-id` is an empty string `steps.fc.outputs.comment-id == 0` evalu

```yml
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: 1
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -24,7 +24,7 @@ outputs:
comment-author:
description: 'The author of the matching comment found.'
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'search'
Expand Down
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "find-comment",
"version": "1.0.0",
"version": "2.0.0",
"private": true,
"description": "Find an issue or pull request comment",
"main": "lib/main.js",
Expand Down

0 comments on commit 1769778

Please sign in to comment.