diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a7bbc52..d90475a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,8 +7,8 @@ jobs: name: Run pre-commit # https://pre-commit.com/ runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 # https://www.python.org/ + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 # https://www.python.org/ with: python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified @@ -18,7 +18,7 @@ jobs: pip install pre-commit - name: Set PY run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 830da84..de91e51 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -7,7 +7,7 @@ jobs: name: GitHub Super-Linter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: github/super-linter@v4.6.0 env: ERROR_ON_MISSING_EXEC_BIT: true