We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f2a72 commit b6ab362Copy full SHA for b6ab362
.github/actions/docker/action.yml
@@ -34,20 +34,20 @@ runs:
34
git checkout ${{ github.sha }}
35
36
- name: Set up Docker Buildx
37
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v2
38
39
- name: Cache Docker layers and Dart packages
40
- uses: actions/cache@v2
+ uses: actions/cache@v3
41
with:
42
path: |
43
/tmp/.buildx-cache
44
/tmp/.pub-cache
45
- key: ${{ runner.os }}-buildx-${{ github.sha }}
+ key: ${{ runner.os }}-cache-${{ github.sha }}
46
restore-keys: |
47
- ${{ runner.os }}-buildx-
+ ${{ runner.os }}-cache-
48
49
- name: Build development Docker image
50
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v4
51
52
# Load the built image into local Docker. Used in the next step.
53
load: true
0 commit comments