Skip to content

Commit fdbda35

Browse files
dependabot[bot]stevenhorsman
authored andcommitted
build(deps): bump docker/login-action from 3.4.0 to 3.5.0
Bumps [docker/login-action](https://github.com/docker/login-action) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@74a5d14...184bdaa) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: 3.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7457731 commit fdbda35

13 files changed

+26
-26
lines changed

.github/workflows/azure-podvm-image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
# verify json
138138
jq -e . measurements.json
139139
140-
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
140+
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
141141
with:
142142
registry: ghcr.io
143143
username: ${{ github.actor }}

.github/workflows/build-golang-fedora.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ jobs:
9797

9898
- name: Login to the ghcr Container registry
9999
if: steps.tags.outputs.registry == 'ghcr.io'
100-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
100+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
101101
with:
102102
registry: ghcr.io
103103
username: ${{ github.actor }}
104104
password: ${{ secrets.GITHUB_TOKEN }}
105105

106106
- name: Login to quay Container Registry
107107
if: steps.tags.outputs.registry == 'quay.io'
108-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
108+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
109109
with:
110110
registry: quay.io
111111
username: ${{ vars.QUAY_USERNAME }}

.github/workflows/caa_build_and_push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ jobs:
9898
sudo apt-get install -y libvirt-dev
9999
- name: Login to quay Container Registry
100100
if: ${{ startsWith(inputs.registry, 'quay.io') }}
101-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
101+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
102102
with:
103103
registry: ${{ inputs.registry }}
104104
username: ${{ vars.QUAY_USERNAME }}
105105
password: ${{ secrets.QUAY_PASSWORD }}
106106

107107
- name: Login to Github Container Registry
108108
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
109-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
109+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
110110
with:
111111
registry: ${{ inputs.registry }}
112112
username: ${{ github.repository_owner }}

.github/workflows/caa_build_and_push_per_arch.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ jobs:
113113
114114
- name: Login to quay Container Registry
115115
if: ${{ startsWith(inputs.registry, 'quay.io') }}
116-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
116+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
117117
with:
118118
registry: ${{ inputs.registry }}
119119
username: ${{ vars.QUAY_USERNAME }}
120120
password: ${{ secrets.QUAY_PASSWORD }}
121121

122122
- name: Login to Github Container Registry
123123
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
124-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
124+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
125125
with:
126126
registry: ${{ inputs.registry }}
127127
username: ${{ github.repository_owner }}
@@ -190,15 +190,15 @@ jobs:
190190

191191
- name: Login to quay Container Registry
192192
if: ${{ startsWith(inputs.registry, 'quay.io') }}
193-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
193+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
194194
with:
195195
registry: ${{ inputs.registry }}
196196
username: ${{ vars.QUAY_USERNAME }}
197197
password: ${{ secrets.QUAY_PASSWORD }}
198198

199199
- name: Login to Github Container Registry
200200
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
201-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
201+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
202202
with:
203203
registry: ${{ inputs.registry }}
204204
username: ${{ github.repository_owner }}

.github/workflows/csi_wrapper_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ jobs:
6262
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
6363
- name: Login to quay Container Registry
6464
if: ${{ startsWith(inputs.registry, 'quay.io') }}
65-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
65+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6666
with:
6767
registry: quay.io
6868
username: ${{ vars.QUAY_USERNAME }}
6969
password: ${{ secrets.QUAY_PASSWORD }}
7070
- name: Login to Github Container Registry
7171
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
72-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
72+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
7373
with:
7474
registry: ghcr.io
7575
username: ${{ github.repository_owner }}

.github/workflows/e2e_docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363
6464
- name: Login to quay Container Registry
6565
if: ${{ startsWith(inputs.podvm_image, 'quay.io') }}
66-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
66+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6767
with:
6868
registry: quay.io
6969
username: ${{ vars.QUAY_USERNAME }}
7070
password: ${{ secrets.QUAY_PASSWORD }}
7171

7272
- name: Login to the ghcr Container registry
7373
if: ${{ startsWith(inputs.podvm_image, 'ghcr.io') }}
74-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
74+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
7575
with:
7676
registry: ghcr.io
7777
username: ${{ github.actor }}

.github/workflows/peerpod-ctrl_image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
5050
- name: Login to Quay container Registry
5151
if: ${{ startsWith(inputs.registry, 'quay.io') }}
52-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
52+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
5353
with:
5454
registry: quay.io
5555
username: ${{ vars.QUAY_USERNAME }}
5656
password: ${{ secrets.QUAY_PASSWORD }}
5757
- name: Login to Github Container Registry
5858
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
59-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
59+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6060
with:
6161
registry: ghcr.io
6262
username: ${{ github.repository_owner }}

.github/workflows/podvm.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
6161

6262
- name: Login to Quay container Registry
63-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
63+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6464
if: ${{ startsWith(inputs.registry, 'quay.io') }}
6565
with:
6666
registry: quay.io
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Login to Github Container Registry
7171
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
72-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
72+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
7373
with:
7474
registry: ghcr.io
7575
username: ${{ github.repository_owner }}

.github/workflows/podvm_binaries.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ jobs:
5656

5757
- name: Login to Quay container Registry
5858
if: ${{ startsWith(inputs.registry, 'quay.io') }}
59-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
59+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6060
with:
6161
registry: quay.io
6262
username: ${{ vars.QUAY_USERNAME }}
6363
password: ${{ secrets.QUAY_PASSWORD }}
6464

6565
- name: Login to Github Container Registry
6666
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
67-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
67+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6868
with:
6969
registry: ghcr.io
7070
username: ${{ github.repository_owner }}

.github/workflows/podvm_builder.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ jobs:
5757

5858
- name: Login to Quay container Registry
5959
if: ${{ startsWith(inputs.registry, 'quay.io') }}
60-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
60+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6161
with:
6262
registry: quay.io
6363
username: ${{ vars.QUAY_USERNAME }}
6464
password: ${{ secrets.QUAY_PASSWORD }}
6565

6666
- name: Login to Github Container Registry
6767
if: ${{ startsWith(inputs.registry, 'ghcr.io') }}
68-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
68+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6969
with:
7070
registry: ghcr.io
7171
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)