Skip to content

Commit 6f44219

Browse files
committed
Switch back to versions
1 parent 781261b commit 6f44219

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/workflows/check-spelling.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919

2020
steps:
2121
- name: Checkout Code
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v5
22+
uses: actions/checkout@v6
2323
with:
2424
persist-credentials: false
2525

2626
- name: Check Spelling
27-
uses: codespell-project/actions-codespell@42fe0b24d5b632e195b6e63de8e7d18f538f14f1 # master
27+
uses: codespell-project/actions-codespell@v2
2828
with:
2929
check_filenames: true

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020

2121
steps:
2222
- name: Checkout Code
23-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v5
23+
uses: actions/checkout@v6
2424
with:
2525
# Full git history is needed to get a proper
2626
# list of changed files within `super-linter`
2727
fetch-depth: 0
2828
persist-credentials: false
2929

3030
- name: Lint Code Base
31-
uses: super-linter/super-linter/slim@96eef5c0c16e2eaa3a49f8f6f68e8b8d33db5d0d # v8.2.1
31+
uses: super-linter/super-linter/slim@v8.2.1
3232
env:
3333
LINTER_RULES_PATH: /
3434
VALIDATE_ALL_CODEBASE: true

.github/workflows/pytest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v5
20+
- uses: actions/checkout@v6
2121
with:
2222
persist-credentials: false
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v6
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install uv
28-
uses: astral-sh/setup-uv@4e339f4c209f54b534c1b7207e03126c0cb9ac3f # v3
28+
uses: astral-sh/setup-uv@v7
2929
- name: Install dependencies
3030
run: |
3131
uv venv

zizmor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
rules:
2+
unpinned-uses:
3+
ignore:
4+
- check-spelling.yml
5+
- linter.yml
6+
- pytest.yml

0 commit comments

Comments
 (0)