Skip to content

Commit b521530

Browse files
build(deps): bump the github-actions group with 2 updates (#921)
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `actions/checkout` from 4.1.0 to 4.1.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.0...9bb5618) Updates `docker/build-push-action` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@4a13e50...af5a7ed) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5d9b978 commit b521530

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/docker-main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
14+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
1515
with:
1616
fetch-depth: 0
1717

@@ -45,7 +45,7 @@ jobs:
4545
run: make build-ci
4646

4747
- name: Docker Publish - Main
48-
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56
48+
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e
4949
with:
5050
context: .
5151
file: ./Dockerfile.ci

.github/workflows/docker-version-branches.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
14+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
1515
with:
1616
fetch-depth: 0
1717

@@ -48,7 +48,7 @@ jobs:
4848
run: make build-ci
4949

5050
- name: Docker Publish - Version Branches
51-
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56
51+
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e
5252
with:
5353
context: .
5454
file: ./Dockerfile.ci

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
12+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
1313

1414
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
1515
with:

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
14+
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
15+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
1616
with:
1717
fetch-depth: 0
1818

@@ -49,7 +49,7 @@ jobs:
4949
run: make build-ci
5050

5151
- name: Docker Publish - Main
52-
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56
52+
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e
5353
with:
5454
context: .
5555
file: ./Dockerfile.ci

.github/workflows/test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: github.event_name == 'pull_request'
1414
steps:
15-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
15+
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
1616
with:
1717
fetch-depth: 0
1818
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
@@ -39,7 +39,7 @@ jobs:
3939
go-version: 1.22.x
4040
- name: set env vars
4141
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
42-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
42+
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
4343
with:
4444
fetch-depth: 0
4545
- name: cache go binaries
@@ -71,7 +71,7 @@ jobs:
7171
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
7272
with:
7373
go-version: 1.22.x
74-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
74+
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
7575
- uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319
7676
with:
7777
path: |

0 commit comments

Comments
 (0)