Skip to content

Commit 1ef5b41

Browse files
committed
Merge #1679: chore(deps): consolidate Docker GitHub Action updates
4f3f195 chore(deps): bump docker/build-push-action from 6 to 7 (dependabot[bot]) 2c78850 chore(deps): bump docker/setup-buildx-action from 3 to 4 (dependabot[bot]) 504135d chore(deps): bump docker/metadata-action from 5 to 6 (dependabot[bot]) c88f66c chore(deps): bump docker/login-action from 3 to 4 (dependabot[bot]) Pull request description: This PR consolidates the following Dependabot updates into one branch and PR:\n\n- #1670: bump docker/build-push-action from 6 to 7\n- #1668: bump docker/setup-buildx-action from 3 to 4\n- #1667: bump docker/metadata-action from 5 to 6\n- #1666: bump docker/login-action from 3 to 4\n\nEach dependency update was applied as a separate commit. ACKs for top commit: josecelano: ACK 4f3f195 Tree-SHA512: 0f8d85b99934d0d859199f2bfd587dc49c9744ab57708204d037198dae44d317a70efde8b347944d0d1362773282a7e07e6a99a981a5fbdbc4222e678de35792
2 parents 4b814c8 + 4f3f195 commit 1ef5b41

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/container.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
steps:
2727
- id: setup
2828
name: Setup Toolchain
29-
uses: docker/setup-buildx-action@v3
29+
uses: docker/setup-buildx-action@v4
3030

3131
- id: build
3232
name: Build
33-
uses: docker/build-push-action@v6
33+
uses: docker/build-push-action@v7
3434
with:
3535
file: ./Containerfile
3636
push: false
@@ -108,7 +108,7 @@ jobs:
108108
steps:
109109
- id: meta
110110
name: Docker Meta
111-
uses: docker/metadata-action@v5
111+
uses: docker/metadata-action@v6
112112
with:
113113
images: |
114114
"${{ secrets.DOCKER_HUB_USERNAME }}/${{secrets.DOCKER_HUB_REPOSITORY_NAME }}"
@@ -117,17 +117,17 @@ jobs:
117117
118118
- id: login
119119
name: Login to Docker Hub
120-
uses: docker/login-action@v3
120+
uses: docker/login-action@v4
121121
with:
122122
username: ${{ secrets.DOCKER_HUB_USERNAME }}
123123
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
124124

125125
- id: setup
126126
name: Setup Toolchain
127-
uses: docker/setup-buildx-action@v3
127+
uses: docker/setup-buildx-action@v4
128128

129129
- name: Build and push
130-
uses: docker/build-push-action@v6
130+
uses: docker/build-push-action@v7
131131
with:
132132
file: ./Containerfile
133133
push: true
@@ -146,7 +146,7 @@ jobs:
146146
steps:
147147
- id: meta
148148
name: Docker Meta
149-
uses: docker/metadata-action@v5
149+
uses: docker/metadata-action@v6
150150
with:
151151
images: |
152152
"${{ secrets.DOCKER_HUB_USERNAME }}/${{secrets.DOCKER_HUB_REPOSITORY_NAME }}"
@@ -158,17 +158,17 @@ jobs:
158158
159159
- id: login
160160
name: Login to Docker Hub
161-
uses: docker/login-action@v3
161+
uses: docker/login-action@v4
162162
with:
163163
username: ${{ secrets.DOCKER_HUB_USERNAME }}
164164
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
165165

166166
- id: setup
167167
name: Setup Toolchain
168-
uses: docker/setup-buildx-action@v3
168+
uses: docker/setup-buildx-action@v4
169169

170170
- name: Build and push
171-
uses: docker/build-push-action@v6
171+
uses: docker/build-push-action@v7
172172
with:
173173
file: ./Containerfile
174174
push: true

0 commit comments

Comments
 (0)