Skip to content

Commit 99593ba

Browse files
chore(deps): bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `8` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 5 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v8) 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: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' 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>
1 parent 2c0c4a1 commit 99593ba

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, 'Merge pull request')"
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- uses: actions/setup-go@v6
1616
with:
1717
go-version-file: 'go.mod'
1818
- name: Install all tools
1919
run: make tools
20-
- uses: actions/upload-artifact@v4
20+
- uses: actions/upload-artifact@v7
2121
with:
2222
name: tools
2323
path: bin/
@@ -27,11 +27,11 @@ jobs:
2727
if: "!contains(github.event.head_commit.message, 'Merge pull request')"
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- uses: actions/setup-go@v6
3232
with:
3333
go-version-file: 'go.mod'
34-
- uses: actions/download-artifact@v5
34+
- uses: actions/download-artifact@v8
3535
with:
3636
name: tools
3737
path: bin/
@@ -45,11 +45,11 @@ jobs:
4545
if: "!contains(github.event.head_commit.message, 'Merge pull request')"
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
- uses: actions/setup-go@v6
5050
with:
5151
go-version-file: 'go.mod'
52-
- uses: actions/download-artifact@v5
52+
- uses: actions/download-artifact@v8
5353
with:
5454
name: tools
5555
path: bin/
@@ -63,11 +63,11 @@ jobs:
6363
if: "!contains(github.event.head_commit.message, 'Merge pull request')"
6464
runs-on: ubuntu-latest
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
- uses: actions/setup-go@v6
6868
with:
6969
go-version-file: 'go.mod'
70-
- uses: actions/download-artifact@v5
70+
- uses: actions/download-artifact@v8
7171
with:
7272
name: tools
7373
path: bin/

.github/workflows/buildpushdev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
name: buildpushdev
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515

1616
- name: Set up Docker Buildx
17-
uses: docker/setup-buildx-action@v3
17+
uses: docker/setup-buildx-action@v4
1818

1919
- name: Login to DockerHub
20-
uses: docker/login-action@v3
20+
uses: docker/login-action@v4
2121
with:
2222
username: ${{ secrets.DOCKERHUB_USERNAME }}
2323
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "::set-output name=sha7::$(echo ${GITHUB_SHA} | cut -c1-7)"
2828

2929
- name: Build and push
30-
uses: docker/build-push-action@v6
30+
uses: docker/build-push-action@v7
3131
with:
3232
context: .
3333
file: ./Dockerfile

.github/workflows/buildpushtagged.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Set up Docker Buildx
19-
uses: docker/setup-buildx-action@v3
19+
uses: docker/setup-buildx-action@v4
2020

2121
- name: Login to DockerHub
22-
uses: docker/login-action@v3
22+
uses: docker/login-action@v4
2323
with:
2424
username: ${{ secrets.DOCKERHUB_USERNAME }}
2525
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -31,7 +31,7 @@ jobs:
3131
strip_v: true
3232

3333
- name: Build and push
34-
uses: docker/build-push-action@v6
34+
uses: docker/build-push-action@v7
3535
with:
3636
context: .
3737
file: ./Dockerfile

0 commit comments

Comments
 (0)