Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/gitguardian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.actor != 'dependabot[bot]' # Skip for Dependabot
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
fetch-depth: 0 # fetch all history so multiple commits can be scanned
- name: GitGuardian scan
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: Install ShellCheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: Install EditorConfig Checker
run: |
Expand All @@ -76,7 +76,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: Install yamllint
run: pip install yamllint
Expand All @@ -91,7 +91,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: CodeSpell Check
uses: codespell-project/actions-codespell@v2
Expand All @@ -105,7 +105,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: Install check-jsonschema
run: pip install check-jsonschema
Expand Down