Skip to content

Commit

Permalink
chore(main): update github actions node version
Browse files Browse the repository at this point in the history
  • Loading branch information
StanHannebelle committed Oct 27, 2022
1 parent 886f696 commit d011955
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

0 comments on commit d011955

Please sign in to comment.