Skip to content

Commit

Permalink
Merge branch 'main' into webview
Browse files Browse the repository at this point in the history
  • Loading branch information
priyamsahoo committed Oct 30, 2023
2 parents 7c26f78 + 567d4b2 commit 42b84aa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout vscode-ansible
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.1.1

- name: Install Task
uses: arduino/setup-task@v1
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
key: ${{ runner.os }}-${{ matrix.task-name }}-${{ hashFiles('package.json', 'yarn.lock', '.config/requirements.txt', '**/Taskfile.yml', 'tools/*.*') }}

- name: Use NodeJS v18
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.1
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
Expand Down
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ repos:
# files: \.tool-versions|package\.json|yarn(-.*\.cjs|\.lock)
# entry: npx yarn run yarn-audit-fix
- repo: https://github.com/ScribeMD/pre-commit-hooks
rev: 0.15.7
rev: 0.16.1
hooks:
- id: yarn-dedupe
entry: npx yarn dedupe
# - id: yarn-audit
# entry: npx yarn npm audit

- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.5
rev: v0.9.0.6
hooks:
- id: shellcheck
args:
- --color=always

- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.4.0
rev: v4.5.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -68,7 +68,7 @@ repos:
- id: debug-statements
language_version: python3
- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v6.31.0
rev: v7.3.2
hooks:
- id: cspell
name: Spell check with cspell
Expand All @@ -91,7 +91,7 @@ repos:
test/testFixtures/diagnostics/yaml/invalid_yaml.yml
)$
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.2.6
hooks:
- id: codespell
exclude: >
Expand All @@ -104,7 +104,7 @@ repos:
)$
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before markdownlint and eslint
rev: "v3.0.0-alpha.9-for-vscode"
rev: "v3.0.3"
hooks:
- id: prettier
types_or: ["markdown", "json", "ts"]
Expand All @@ -114,7 +114,7 @@ repos:
syntaxes/external/jinja.tmLanguage.json|
)$
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.34.0
rev: v0.37.0
hooks:
- id: markdownlint
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
Expand All @@ -123,7 +123,7 @@ repos:
- id: commitlint
stages: [commit-msg]
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.45.0
rev: v8.52.0
hooks:
- id: eslint
args:
Expand Down

0 comments on commit 42b84aa

Please sign in to comment.