From 6712b14573c956d3dfb0bea904e101eebf06a5b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 6 Jan 2025 10:33:24 +0100 Subject: [PATCH] chore: update deprecated github actions actions/cache{v1|v2} will cease functioning on Feb 1st, see https://github.blog/changelog/2024-09-16-notice-of-upcoming-deprecations-and-changes-in-github-actions-services/ --- .github/workflows/build.yml | 4 ++-- .github/workflows/octoprint-release.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3b5a63..957e7ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }} @@ -98,7 +98,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }} diff --git a/.github/workflows/octoprint-release.yml b/.github/workflows/octoprint-release.yml index 091e35b..3fe10d6 100644 --- a/.github/workflows/octoprint-release.yml +++ b/.github/workflows/octoprint-release.yml @@ -60,7 +60,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker Layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }} @@ -147,7 +147,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker Layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }} @@ -255,7 +255,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker Layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }} @@ -337,7 +337,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker Layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }}