Skip to content

Commit b3415ce

Browse files
build(deps): bump the github-actions group with 3 updates (#995)
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [docker/build-push-action](https://github.com/docker/build-push-action) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/checkout` from 4.1.6 to 4.1.7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@a5ac7e5...692973e) Updates `docker/build-push-action` from 5.3.0 to 6.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@2cdde99...1556069) Updates `peter-evans/create-pull-request` from 6.0.5 to 6.1.0 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@6d6857d...c5a7806) --- 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-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request 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 b1ea03e commit b3415ce

7 files changed

+13
-13
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@a5ac7e51b41094c92402da3b24376905380afc29
14+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
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@2cdde995de11925a030ce8070c3d77a52ffcf1c0
48+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1
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@a5ac7e51b41094c92402da3b24376905380afc29
14+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
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@2cdde995de11925a030ce8070c3d77a52ffcf1c0
51+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1
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@a5ac7e51b41094c92402da3b24376905380afc29
12+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1313

1414
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
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@a5ac7e51b41094c92402da3b24376905380afc29
14+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
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@a5ac7e51b41094c92402da3b24376905380afc29
15+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
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@2cdde995de11925a030ce8070c3d77a52ffcf1c0
52+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1
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@a5ac7e51b41094c92402da3b24376905380afc29
15+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1616
with:
1717
fetch-depth: 0
1818
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
@@ -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@a5ac7e51b41094c92402da3b24376905380afc29
42+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4343
with:
4444
fetch-depth: 0
4545
- name: cache go binaries
@@ -71,7 +71,7 @@ jobs:
7171
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
7272
with:
7373
go-version: 1.22.x
74-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
74+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
7575
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
7676
with:
7777
path: |

.github/workflows/update-core.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
13+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1414
- name: Setup Go
1515
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
1616
with:
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Create Pull Request
3131
if: ${{ steps.git-diff.outputs.changed }} == 'true'
32-
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
32+
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c
3333
with:
3434
author: GitHub Actions <[email protected]>
3535
body: "This PR updates the Pomerium Core to the latest commit in main"

0 commit comments

Comments
 (0)