Skip to content

Commit 6813d93

Browse files
authored
Bump actions versions (#189)
* Bump actions versions * Fix up
1 parent a52bc08 commit 6813d93

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
name: Run pre-commit # https://pre-commit.com/
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions/setup-python@v2 # https://www.python.org/
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5 # https://www.python.org/
1212
with:
1313
python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax
1414
architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified
@@ -18,7 +18,7 @@ jobs:
1818
pip install pre-commit
1919
- name: Set PY
2020
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
21-
- uses: actions/cache@v2.1.6
21+
- uses: actions/cache@v3
2222
with:
2323
path: ~/.cache/pre-commit
2424
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/super-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: GitHub Super-Linter
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- uses: github/[email protected]
1212
env:
1313
ERROR_ON_MISSING_EXEC_BIT: true

0 commit comments

Comments
 (0)