Skip to content

Commit

Permalink
Merge pull request #333 from silamon/node16
Browse files Browse the repository at this point in the history
Run action on NodeJS 16
  • Loading branch information
nick-fields authored Mar 6, 2023
2 parents bc8e27a + 13acb73 commit 1a3e963
Show file tree
Hide file tree
Showing 7 changed files with 32,050 additions and 26,501 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Pre-requisites
run: .github/scripts/ubuntu-init.sh
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '10.x'
node-version: '16.x'
- name: install
run: npm install
- name: lint
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
description: 'The optional path to directory containing action. Useful when multiple private actions are stored in the same repo'
required: false
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'lock'
Expand Down
2 changes: 1 addition & 1 deletion configs/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'prettier',
],
};
Loading

0 comments on commit 1a3e963

Please sign in to comment.