From bfe8d91b6417650c3340491eb03102510a5f5810 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Tue, 10 Dec 2024 15:07:20 -0500 Subject: [PATCH] fix: Drop cache@v2 because it will break soon. See the announcement here: https://github.blog/changelog/2024-09-16-notice-of-upcoming-deprecations-and-changes-in-github-actions-services/ --- .github/workflows/migrations-check-mysql8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/migrations-check-mysql8.yml b/.github/workflows/migrations-check-mysql8.yml index 4051412117..5cd07a8f30 100644 --- a/.github/workflows/migrations-check-mysql8.yml +++ b/.github/workflows/migrations-check-mysql8.yml @@ -36,7 +36,7 @@ jobs: - name: Cache pip dependencies id: cache-dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache-dir.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('requirements/pip_tools.txt') }}