From b6ab362cd3d1608b52c3ed2dede1016142766bb8 Mon Sep 17 00:00:00 2001 From: Jan Jones Date: Sat, 19 Aug 2023 14:06:57 +0200 Subject: [PATCH] Update actions --- .github/actions/docker/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/docker/action.yml b/.github/actions/docker/action.yml index 3ccff7e..c059a7c 100644 --- a/.github/actions/docker/action.yml +++ b/.github/actions/docker/action.yml @@ -34,20 +34,20 @@ runs: git checkout ${{ github.sha }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Cache Docker layers and Dart packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | /tmp/.buildx-cache /tmp/.pub-cache - key: ${{ runner.os }}-buildx-${{ github.sha }} + key: ${{ runner.os }}-cache-${{ github.sha }} restore-keys: | - ${{ runner.os }}-buildx- + ${{ runner.os }}-cache- - name: Build development Docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v4 with: # Load the built image into local Docker. Used in the next step. load: true