Skip to content

Commit fbc8995

Browse files
build(deps): bump docker/login-action from 3 to 4
Bumps [docker/login-action](https://github.com/docker/login-action) from 3 to 4. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1ec09d5 commit fbc8995

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-all-matrix.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ jobs:
8383
8484
- name: Docker Login to quay.io
8585
if: ${{ env.REGISTRY == 'quay.io' && github.ref == 'refs/heads/main' }}
86-
uses: docker/login-action@v3
86+
uses: docker/login-action@v4
8787
with: { registry: "quay.io", username: "${{ secrets.QUAY_USERNAME }}", password: "${{ secrets.QUAY_PASSWORD }}" }
8888

8989
- name: Docker Login to GitHub Container Registry
9090
if: ${{ env.REGISTRY == 'ghcr.io' }}
91-
uses: docker/login-action@v3
91+
uses: docker/login-action@v4
9292
with: { registry: "ghcr.io", username: "${{ github.repository_owner }}", password: "${{ secrets.GITHUB_TOKEN }}" }
9393

9494
- name: Build and Push and Export LinuxKit containers for ${{matrix.docker_arch}}
@@ -127,12 +127,12 @@ jobs:
127127
128128
- name: Docker Login to quay.io
129129
if: ${{ env.REGISTRY == 'quay.io' && github.ref == 'refs/heads/main' }}
130-
uses: docker/login-action@v3
130+
uses: docker/login-action@v4
131131
with: { registry: "quay.io", username: "${{ secrets.QUAY_USERNAME }}", password: "${{ secrets.QUAY_PASSWORD }}" }
132132

133133
- name: Docker Login to GitHub Container Registry
134134
if: ${{ env.REGISTRY == 'ghcr.io' }}
135-
uses: docker/login-action@v3
135+
uses: docker/login-action@v4
136136
with: { registry: "ghcr.io", username: "${{ github.repository_owner }}", password: "${{ secrets.GITHUB_TOKEN }}" }
137137

138138
- name: Build and Push and Export Kernel ${{matrix.kernel}} (${{ matrix.arch }})
@@ -178,17 +178,17 @@ jobs:
178178
179179
- name: Docker Login to DockerHub # read-only token, required to be able to pull all the linuxkit pkgs without getting rate limited.
180180
if: ${{ env.LOGIN_TO_DOCKERHUB == 'yes' && github.ref == 'refs/heads/main' }}
181-
uses: docker/login-action@v3
181+
uses: docker/login-action@v4
182182
with: { registry: "docker.io", username: "${{ secrets.DOCKERHUB_USERNAME }}", password: "${{ secrets.DOCKERHUB_PASSWORD }}" }
183183

184184
- name: Docker Login to quay.io
185185
if: ${{ env.REGISTRY == 'quay.io' && github.ref == 'refs/heads/main' }}
186-
uses: docker/login-action@v3
186+
uses: docker/login-action@v4
187187
with: { registry: "quay.io", username: "${{ secrets.QUAY_USERNAME }}", password: "${{ secrets.QUAY_PASSWORD }}" }
188188

189189
- name: Docker Login to GitHub Container Registry
190190
if: ${{ env.REGISTRY == 'ghcr.io' }}
191-
uses: docker/login-action@v3
191+
uses: docker/login-action@v4
192192
with: { registry: "ghcr.io", username: "${{ github.repository_owner }}", password: "${{ secrets.GITHUB_TOKEN }}" }
193193

194194
- name: GitHub Actions Cache for 'cache' dir

0 commit comments

Comments
 (0)