Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jjonescz authored Aug 19, 2023
1 parent e1f2a72 commit b6ab362
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b6ab362

Please sign in to comment.