Skip to content

Commit 02afbb2

Browse files
committed
chore: update pre-commit
1 parent c72075c commit 02afbb2

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
- name: Setup node
3131
uses: actions/setup-node@v3
3232
with:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/pre-commit-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

@@ -28,14 +28,14 @@ jobs:
2828
2929
# run only if changed files were detected
3030
- name: Run against changes
31-
uses: pre-commit/action@v2.0.3
31+
uses: pre-commit/action@v3.0.1
3232
if: steps.filter.outputs.addedOrModified == 'true'
3333
with:
3434
extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }}
3535

3636
# run if no changed files were detected (e.g. workflow_dispatch on master branch)
3737
- name: Run against all files
38-
uses: pre-commit/action@v2.0.3
38+
uses: pre-commit/action@v3.0.1
3939
if: steps.filter.outputs.addedOrModified != 'true'
4040
with:
4141
extra_args: --all-files

.github/workflows/website-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
deploy:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Use Node.js 18.x
1111
uses: actions/setup-node@v2
1212
with:

0 commit comments

Comments
 (0)