Skip to content

Commit 4333402

Browse files
authored
Dependencies (#7)
* Bump docker/build-push-action from 5 to 7 (#3) Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 7. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v7) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... * Bump docker/setup-buildx-action from 3 to 4 (#4) Bumps [docker/setup-buildx-action](https://github.com/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) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... * Add README with template setup and workflow documentation (#5) * Bump docker/login-action from 3 to 4 (#1) 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 ... * Sync master into dependencies (#6) * Add README with template setup and workflow documentation * Refactor GitHub workflows for improved clarity Move repeated values into environment variables and update git configuration. Add explicit permissions and simplify conditional logic in CI workflows. * Bump docker/metadata-action from 5 to 6 (#2) Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 5 to 6. - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) --- updated-dependencies: - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... ---------
1 parent 9bdcd8c commit 4333402

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/publish-docker-hub.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v6
1717

18-
- uses: docker/setup-buildx-action@v3
19-
- uses: docker/login-action@v3
18+
- uses: docker/setup-buildx-action@v4
19+
- uses: docker/login-action@v4
2020
with:
2121
username: ${{ secrets.DOCKERHUB_USERNAME }}
2222
password: ${{ secrets.DOCKERHUB_TOKEN }}
2323

2424
- id: meta
25-
uses: docker/metadata-action@v5
25+
uses: docker/metadata-action@v6
2626
with:
2727
images: ${{ inputs.image }}
2828
tags: |
2929
type=raw,value=${{ github.ref_name }}
3030
type=raw,value=latest,enable=${{ !contains(github.ref_name, '-beta') }}
3131
32-
- uses: docker/build-push-action@v5
32+
- uses: docker/build-push-action@v7
3333
with:
3434
context: .
3535
push: true

.github/workflows/publish-ghcr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v6
1616

17-
- uses: docker/setup-buildx-action@v3
18-
- uses: docker/login-action@v3
17+
- uses: docker/setup-buildx-action@v4
18+
- uses: docker/login-action@v4
1919
with:
2020
registry: ghcr.io
2121
username: ${{ github.actor }}
2222
password: ${{ secrets.GITHUB_TOKEN }}
2323

2424
- id: meta
25-
uses: docker/metadata-action@v5
25+
uses: docker/metadata-action@v6
2626
with:
2727
images: ghcr.io/${{ github.repository }}
2828
tags: |
2929
type=raw,value=${{ github.ref_name }}
3030
type=raw,value=latest,enable=${{ !contains(github.ref_name, '-beta') }}
3131
32-
- uses: docker/build-push-action@v5
32+
- uses: docker/build-push-action@v7
3333
with:
3434
context: .
3535
push: true

0 commit comments

Comments
 (0)