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

Update node to v16 #10

Open
wants to merge 4 commits into
base: master
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
pre-commit: # make sure pre-commits work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.6
python-version: '3.10'
- name: Cache npm env
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-npm-v1
with:
Expand All @@ -23,7 +23,7 @@ jobs:
npm install npm@latest
npm ci
- name: Cache pre-commit env
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-pre-commit-v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ default_language_version:
minimum_pre_commit_version: "1.20.0"
repos:
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.1.7
rev: v1.4.2
hooks:
- id: forbid-tabs
exclude: ^dist/index.js$
- repo: https://github.com/thlorenz/doctoc.git
rev: v1.4.0
rev: v2.2.0
hooks:
- id: doctoc
name: Add TOC for md files
Expand All @@ -20,7 +20,7 @@ repos:
hooks:
- id: check-hooks-apply
- repo: https://github.com/adrienverge/yamllint
rev: v1.23.0
rev: v1.29.0
hooks:
- id: yamllint
name: Check yaml files with yamllint
Expand All @@ -37,7 +37,7 @@ repos:
require_serial: true
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: detect-private-key
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ outputs:
labelRemoved:
description: 'Was label removed'
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'play'
Expand Down
Loading