From 69bea7b7ac4ad5cf4eaa54d8630191ba750badb0 Mon Sep 17 00:00:00 2001 From: Lukas Vojt Date: Wed, 14 Aug 2024 15:10:52 +0200 Subject: [PATCH] refactor(github): upgrade push workflow --- .github/workflows/push.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ca8b1bc..2c9d70c 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -70,18 +70,13 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.11 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.11 - - name: Cache - uses: actions/cache@v2 - with: - path: .pre-commit-cache - key: static-checks-${{ hashFiles('.pre-commit-config.yaml') }} # git checkout is not creating a working git folder, it has dubious ownership if not configured # The pre-commit hook will not work on this original git folder # https://github.com/pre-commit/pre-commit/issues/2125