Skip to content

Commit b5b14ef

Browse files
Bump the actions group with 4 updates (#701)
Bumps the actions group with 4 updates: [docker/metadata-action](https://github.com/docker/metadata-action), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) --- updated-dependencies: - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a9b0044 commit b5b14ef

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci_cd_docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Docker metadata (development)
7979
id: docker_metadata_dev
80-
uses: docker/metadata-action@v5
80+
uses: docker/metadata-action@v6
8181
with:
8282
images: |
8383
${{ inputs.registry_url || 'ghcr.io' }}/${{ inputs.image_owner || 'emmc-asbl' }}/${{ inputs.image_name || 'oteapi' }}
@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Docker metadata (production)
102102
id: docker_metadata_prod
103-
uses: docker/metadata-action@v5
103+
uses: docker/metadata-action@v6
104104
with:
105105
images: |
106106
${{ inputs.registry_url || 'ghcr.io' }}/${{ inputs.image_owner || 'emmc-asbl' }}/${{ inputs.image_name || 'oteapi' }}
@@ -118,17 +118,17 @@ jobs:
118118
oteapi=production
119119
120120
- name: Set up Docker Buildx
121-
uses: docker/setup-buildx-action@v3
121+
uses: docker/setup-buildx-action@v4
122122

123123
- name: Login to Container Registry
124-
uses: docker/login-action@v3
124+
uses: docker/login-action@v4
125125
with:
126126
registry: ${{ inputs.registry_url || 'ghcr.io' }}
127127
username: ${{ secrets.REGISTRY_USER || github.actor }}
128128
password: ${{ secrets.REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
129129

130130
- name: Build and push (development)
131-
uses: docker/build-push-action@v6
131+
uses: docker/build-push-action@v7
132132
with:
133133
context: .
134134
file: ./Dockerfile
@@ -147,7 +147,7 @@ jobs:
147147
GIT_AUTH_TOKEN=${{ secrets.PAT || secrets.RELEASE_PAT }}
148148
149149
- name: Build and push (production)
150-
uses: docker/build-push-action@v6
150+
uses: docker/build-push-action@v7
151151
with:
152152
context: .
153153
file: ./Dockerfile

0 commit comments

Comments
 (0)