Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): update github actions node version #36

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14]
node: [16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: node --version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yaml
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install
run: npm ci
- name: build
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
release-type: node
package-name: ${{env.ACTION_NAME}}
command: github-release
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: tag major and patch versions
run: |
git config user.name github-actions[bot]
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -27,5 +27,5 @@ branding:
color: 'yellow'

runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -25,8 +25,8 @@
},
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@conventional-commits/parser": "^0.4.1",
"unist-util-visit": "^4.1.0"
},
Expand Down