Compare commits

...

8 Commits

Author SHA1 Message Date
John Molakvoæ
b33bc802b1 Merge pull request #68 from skjnldsv/dependabot/github_actions/docker/login-action-3.4.0 2025-08-14 22:18:56 +02:00
John Molakvoæ
2ebdfc25ad Merge pull request #67 from skjnldsv/dependabot/github_actions/docker/metadata-action-5.7.0 2025-08-14 22:18:48 +02:00
John Molakvoæ
cb99e60643 Merge pull request #65 from skjnldsv/dependabot/github_actions/docker/setup-buildx-action-3.10.0 2025-08-14 22:18:41 +02:00
John Molakvoæ
e26282494f Merge pull request #70 from skjnldsv/dependabot/github_actions/docker/build-push-action-6.17.0 2025-08-14 22:18:36 +02:00
dependabot[bot]
2ba2b9f18f chore(deps): bump docker/build-push-action from 6.13.0 to 6.17.0
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.13.0 to 6.17.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](ca877d9245...1dc7386353)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-version: 6.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-19 13:31:08 +00:00
dependabot[bot]
e9543273ab chore(deps): bump docker/login-action from 3.3.0 to 3.4.0
Bumps [docker/login-action](https://github.com/docker/login-action) from 3.3.0 to 3.4.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](9780b0c442...74a5d14239)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-17 14:26:28 +00:00
dependabot[bot]
af8e968be2 chore(deps): bump docker/metadata-action from 5.6.1 to 5.7.0
Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 5.6.1 to 5.7.0.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](369eb591f4...902fa8ec7d)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-03 13:03:35 +00:00
dependabot[bot]
c0e96b052d chore(deps): bump docker/setup-buildx-action from 3.9.0 to 3.10.0
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 3.9.0 to 3.10.0.
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](f7ce87c1d6...b5ca514318)

---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-03 13:03:31 +00:00

View File

@@ -39,13 +39,13 @@ jobs:
# Workaround: https://github.com/docker/build-push-action/issues/461
- name: Setup Docker buildx
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
@@ -55,7 +55,7 @@ jobs:
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
@@ -63,7 +63,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
with:
context: .
push: ${{ github.event_name != 'pull_request' }}