Skip to content

Commit

Permalink
Merge pull request #8 from dhensby/pulls/upgrade-node
Browse files Browse the repository at this point in the history
feat: upgrade node runtime for gh action
  • Loading branch information
dhensby authored Jun 18, 2024
2 parents f3b854a + 2a7411d commit f3ca9d3
Show file tree
Hide file tree
Showing 9 changed files with 6,886 additions and 10,898 deletions.
29 changes: 29 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
groups:
release-tools:
patterns:
- "@commitlint/*"
- "semantic-release"
- "@semantic-release/*"
test-tools:
patterns:
- "mocha"
- "nyc"
- "@istanbuljs/nyc-config-typescript"
action-tools:
patterns:
- "@actions/*"
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm clean-install
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm clean-install
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm clean-install
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm clean-install
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'
- name: Install deps
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
preset: 'conventionalcommits'
plugins:
- '@semantic-release/commit-analyzer'
- '@semantic-release/release-notes-generator'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ outputs:
instance-name:
description: 'The instance name for the SQL Server.'
runs:
using: 'node16'
using: 'node20'
main: 'lib/main/index.js'
4 changes: 3 additions & 1 deletion lib/main/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit f3ca9d3

Please sign in to comment.