Skip to content

Commit

Permalink
Merge pull request #285 from bbonkr/deps/284-use-node-18
Browse files Browse the repository at this point in the history
deps: use node 18 #284
  • Loading branch information
bbonkr committed Jul 16, 2023
2 parents 85584ca + 62329bc commit c6578a0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Expand Up @@ -2,7 +2,7 @@ version: 2
updates:
- package-ecosystem: github-actions
directory: /
target-branch: "dev"
target-branch: "main"
schedule:
interval: weekly
labels:
Expand All @@ -11,7 +11,7 @@ updates:

- package-ecosystem: npm
directory: /
target-branch: "dev"
target-branch: "main"
schedule:
interval: weekly
labels:
Expand Down
3 changes: 2 additions & 1 deletion .github/release-drafter.yml
@@ -1,4 +1,4 @@
name-template: 'v$RESOLVED_VERSION 🌈'
name-template: 'v$RESOLVED_VERSION ⭐️'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
Expand All @@ -17,6 +17,7 @@ categories:
- 'documentation'
- 'modifications'
- 'refactoring'
- 'dependencies'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
exclude-labels:
- 'skip-changelog'
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/check-dist.yml
Expand Up @@ -21,18 +21,17 @@ jobs:
runs-on: ubuntu-latest

steps:

- name: git config
run: |
git config --global core.autocrlf true
- name: checkout
- name: checkout
uses: actions/checkout@v3

- name: Set Node.js 16.x
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-tag.yml
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set Node.js 16.x
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- run: |
npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify-pr.yml
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set Node.js 16.x
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- run: |
npm install
Expand Down

0 comments on commit c6578a0

Please sign in to comment.