Skip to content

Commit dacd3c1

Browse files
chore(deps): bump the all group across 1 directory with 7 updates
Bumps the all group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [dorny/test-reporter](https://github.com/dorny/test-reporter) | `2` | `3` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.42.1` | `1.44.0` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `6` | `7` | 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/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) 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/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `dorny/test-reporter` from 2 to 3 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](dorny/test-reporter@v2...v3) Updates `crate-ci/typos` from 1.42.1 to 1.44.0 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.42.1...v1.44.0) Updates `goreleaser/goreleaser-action` from 6 to 7 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](goreleaser/goreleaser-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: all - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: dorny/test-reporter dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: crate-ci/typos dependency-version: 1.44.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: goreleaser/goreleaser-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6fb021b commit dacd3c1

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Docker meta
1616
id: meta
17-
uses: docker/metadata-action@v5
17+
uses: docker/metadata-action@v6
1818
with:
1919
# list of Docker images to use as base name for tags
2020
images: |
@@ -30,13 +30,13 @@ jobs:
3030
type=sha
3131
3232
- name: Login to Docker Hub
33-
uses: docker/login-action@v3
33+
uses: docker/login-action@v4
3434
with:
3535
username: ${{ vars.DOCKERHUB_USERNAME }}
3636
password: ${{ secrets.DOCKERHUB_TOKEN }}
3737

3838
- name: Set up Docker Buildx
39-
uses: docker/setup-buildx-action@v3
39+
uses: docker/setup-buildx-action@v4
4040
with:
4141
platforms: "linux/amd64,linux/arm64"
4242

@@ -52,7 +52,7 @@ jobs:
5252
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
5353
5454
- name: Build and push
55-
uses: docker/build-push-action@v6
55+
uses: docker/build-push-action@v7
5656
with:
5757
platforms: "linux/amd64,linux/arm64"
5858
push: true

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: go test -json ./... > test-results.json
3131

3232
- name: Test Report
33-
uses: dorny/test-reporter@v2
33+
uses: dorny/test-reporter@v3
3434
if: ${{ !cancelled() }}
3535
with:
3636
name: Go Test

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
dot: true
2222

2323
- name: typos-action spellchecker
24-
uses: crate-ci/typos@v1.42.1
24+
uses: crate-ci/typos@v1.44.0
2525

2626
- name: yamllint
2727
uses: ibiqlik/action-yamllint@v3

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
go-version-file: "./go.mod"
1818

1919
- name: GoReleaser
20-
uses: goreleaser/goreleaser-action@v6
20+
uses: goreleaser/goreleaser-action@v7
2121
with:
2222
distribution: goreleaser
2323
version: "~> v2"

0 commit comments

Comments
 (0)