Skip to content

Commit 63b1941

Browse files
committed
Merge remote-tracking branches 'origin/dependabot/github_actions/docker/build-push-action-7', 'origin/dependabot/github_actions/docker/login-action-4', 'origin/dependabot/github_actions/docker/metadata-action-6' and 'origin/dependabot/github_actions/docker/setup-buildx-action-4'
5 parents e317633 + 9c92a6e + 79cca2e + 213f1fb + 4fe0724 commit 63b1941

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/docker.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
persist-credentials: false
4141

4242
- name: Set up Docker Buildx
43-
uses: docker/setup-buildx-action@v3
43+
uses: docker/setup-buildx-action@v4
4444

4545
- name: Docker meta
4646
id: meta
47-
uses: docker/metadata-action@v5
47+
uses: docker/metadata-action@v6
4848
with:
4949
images: |
5050
jonchang/tact
@@ -59,22 +59,22 @@ jobs:
5959
6060
- name: Login to DockerHub
6161
if: github.event_name != 'pull_request' || github.actor != 'dependabot[bot]'
62-
uses: docker/login-action@v3
62+
uses: docker/login-action@v4
6363
with:
6464
username: ${{ github.repository_owner }}
6565
password: ${{ secrets.DOCKERHUB_TOKEN }}
6666

6767
- name: Login to GHCR
6868
if: github.event_name != 'pull_request'
69-
uses: docker/login-action@v3
69+
uses: docker/login-action@v4
7070
with:
7171
registry: ghcr.io
7272
username: ${{ github.repository_owner }}
7373
password: ${{ secrets.GITHUB_TOKEN }}
7474

7575
- name: Build and push by digest (DockerHub)
7676
if: github.event_name != 'pull_request' || github.actor != 'dependabot[bot]'
77-
uses: docker/build-push-action@v6
77+
uses: docker/build-push-action@v7
7878
id: build-dockerhub
7979
with:
8080
context: .
@@ -83,7 +83,7 @@ jobs:
8383
outputs: type=image,name=jonchang/tact,push-by-digest=true,name-canonical=true,push=${{ github.event_name != 'pull_request' }}
8484

8585
- name: Build and push by digest (GHCR)
86-
uses: docker/build-push-action@v6
86+
uses: docker/build-push-action@v7
8787
id: build-ghcr
8888
with:
8989
context: .
@@ -127,11 +127,11 @@ jobs:
127127
merge-multiple: false
128128

129129
- name: Set up Docker Buildx
130-
uses: docker/setup-buildx-action@v3
130+
uses: docker/setup-buildx-action@v4
131131

132132
- name: Docker meta
133133
id: meta
134-
uses: docker/metadata-action@v5
134+
uses: docker/metadata-action@v6
135135
with:
136136
images: |
137137
jonchang/tact
@@ -146,13 +146,13 @@ jobs:
146146
147147
- name: Login to DockerHub
148148
if: github.actor != 'dependabot[bot]'
149-
uses: docker/login-action@v3
149+
uses: docker/login-action@v4
150150
with:
151151
username: ${{ github.repository_owner }}
152152
password: ${{ secrets.DOCKERHUB_TOKEN }}
153153

154154
- name: Login to GHCR
155-
uses: docker/login-action@v3
155+
uses: docker/login-action@v4
156156
with:
157157
registry: ghcr.io
158158
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)