Skip to content

Commit 7ccc93c

Browse files
[chore] : Bump the actions group across 1 directory with 7 updates
Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3.5.2` | `4.2.2` | | [actions/setup-go](https://github.com/actions/setup-go) | `4.0.0` | `5.5.0` | | [actions/cache](https://github.com/actions/cache) | `4.2.3` | `4.2.4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.3` | `4.6.2` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `3.4.0` | `8.0.0` | | [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) | `1.26.1` | `1.50.0` | | [bufbuild/buf-lint-action](https://github.com/bufbuild/buf-lint-action) | `1.0.3` | `1.1.1` | Updates `actions/checkout` from 3.5.2 to 4.2.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e5e7e5...11bd719) Updates `actions/setup-go` from 4.0.0 to 5.5.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4d34df0...d35c59a) Updates `actions/cache` from 4.2.3 to 4.2.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@5a3ec84...0400d5f) Updates `actions/upload-artifact` from 4.3.3 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@6546280...ea165f8) Updates `golangci/golangci-lint-action` from 3.4.0 to 8.0.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@08e2f20...4afd733) Updates `bufbuild/buf-setup-action` from 1.26.1 to 1.50.0 - [Release notes](https://github.com/bufbuild/buf-setup-action/releases) - [Commits](bufbuild/buf-setup-action@eb60cd0...a47c93e) Updates `bufbuild/buf-lint-action` from 1.0.3 to 1.1.1 - [Release notes](https://github.com/bufbuild/buf-lint-action/releases) - [Commits](bufbuild/buf-lint-action@bd48f53...06f9dd8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 4.2.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: bufbuild/buf-setup-action dependency-version: 1.50.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: bufbuild/buf-lint-action dependency-version: 1.1.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8d1eba3 commit 7ccc93c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/checks.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: "Fetch source code"
21-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
21+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222

2323
- name: Install Go toolchain
24-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
24+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2525
with:
2626
go-version: ${{ env.GO_VERSION }}
2727

2828
# NOTE: This cache is shared so the following step must always be
2929
# identical across the unit-tests, e2e-tests, and consistency-checks
3030
# jobs, or else weird things could happen.
3131
- name: Cache Go modules
32-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
32+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3333
with:
3434
path: "~/go/pkg"
3535
key: go-mod-${{ hashFiles('go.sum') }}
@@ -41,7 +41,7 @@ jobs:
4141
go test -v ./... -coverprofile=coverage.out
4242
4343
- name: Upload Coverage report
44-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
44+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
4545
with:
4646
path: coverage.out
4747
name: Coverage-report
@@ -55,18 +55,18 @@ jobs:
5555

5656
steps:
5757
- name: "Fetch source code"
58-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
58+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5959

6060
- name: Install Go toolchain
61-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
61+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
6262
with:
6363
go-version: ${{ env.GO_VERSION }}
6464

6565
# NOTE: This cache is shared so the following step must always be
6666
# identical across the unit-tests and consistency-checks
6767
# jobs, or else weird things could happen.
6868
- name: Cache Go modules
69-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
69+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
7070
with:
7171
path: "~/go/pkg"
7272
key: go-mod-${{ hashFiles('go.sum') }}
@@ -82,7 +82,7 @@ jobs:
8282
fi
8383
8484
- name: Run golangci-lint
85-
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # v3.4.0
85+
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
8686
# protobuf linting
87-
- uses: bufbuild/buf-setup-action@eb60cd0de4f14f1f57cf346916b8cd69a9e7ed0b # v1.26.1
88-
- uses: bufbuild/buf-lint-action@bd48f53224baaaf0fc55de9a913e7680ca6dbea4 # v1.0.3
87+
- uses: bufbuild/buf-setup-action@a47c93e0b1648d5651a065437926377d060baa99 # v1.50.0
88+
- uses: bufbuild/buf-lint-action@06f9dd823d873146471cfaaf108a993fe00e5325 # v1.1.1

.github/workflows/two-step-pr-approval.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1818

1919
- name: Two stage PR review
2020
uses: hashicorp/[email protected]

0 commit comments

Comments
 (0)