You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/docker.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -38,18 +38,18 @@ jobs:
38
38
uses: actions/checkout@v6
39
39
40
40
- name: Set up Docker Buildx
41
-
uses: docker/setup-buildx-action@v3# needed for GitHub Actions Cache in build-push-action
41
+
uses: docker/setup-buildx-action@v4# needed for GitHub Actions Cache in build-push-action
42
42
43
43
- name: Log in to the Container registry
44
-
uses: docker/login-action@v3
44
+
uses: docker/login-action@v4
45
45
with:
46
46
registry: ${{ env.REGISTRY }}
47
47
username: ${{ github.actor }}
48
48
password: ${{ secrets.GITHUB_TOKEN }}
49
49
50
50
- name: Extract metadata (tags, labels) for Docker
51
51
id: meta
52
-
uses: docker/metadata-action@v5
52
+
uses: docker/metadata-action@v6
53
53
with:
54
54
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
55
55
tags: |
@@ -59,7 +59,7 @@ jobs:
59
59
60
60
- name: Build Docker image
61
61
id: build
62
-
uses: docker/build-push-action@v6
62
+
uses: docker/build-push-action@v7
63
63
with:
64
64
context: .
65
65
load: true # load into docker instead of immediately pushing
@@ -72,7 +72,7 @@ jobs:
72
72
run: docker run --rm -v $(pwd):/data ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }} /data/tests/regression/04-mutex/01-simple_rc.c # run image by version in case multiple tags
0 commit comments