Skip to content

Commit 6f73dcd

Browse files
chore(deps): Update github-actions (#2526)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) ([changelog](https://redirect.github.com/actions/cache/compare/27d5ce7f107fe9357f9df03efb73ab90386fccae..caa296126883cff596d87d8935842f9db880ef25)) | action | digest | `27d5ce7` → `caa2961` | | [actions/setup-go](https://redirect.github.com/actions/setup-go) ([changelog](https://redirect.github.com/actions/setup-go/compare/4a3601121dd01d1626a1e23e37211e3254c1c06c..924ae3a1cded613372ab5595356fb5720e22ba16)) | action | digest | `4a36011` → `924ae3a` | | [golangci/golangci-lint-action](https://redirect.github.com/golangci/golangci-lint-action) ([changelog](https://redirect.github.com/golangci/golangci-lint-action/compare/82606bf257cbaff209d206a39f5134f0cfbfd2ee..ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a)) | action | digest | `82606bf` → `ba0d7d2` | | [stefanzweifel/git-auto-commit-action](https://redirect.github.com/stefanzweifel/git-auto-commit-action) ([changelog](https://redirect.github.com/stefanzweifel/git-auto-commit-action/compare/04702edda442b2e678b25b537cec683a1493fcb9..4a55954c782fc1ea30b9056cd3e7a2b40ca8887d)) | action | digest | `04702ed` → `4a55954` | --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month (`* 0-3 1 * *`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
1 parent 439df3d commit 6f73dcd

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/gen_coverage_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
token: ${{ steps.app-token.outputs.token }}
3232
- name: Set up Go 1.x
3333
id: setup-go
34-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
34+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
3535
with:
3636
go-version: "1.26"
3737
cache: false

.github/workflows/go_mod_tidy_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
token: ${{ steps.app-token.outputs.token }}
3030
- name: Set up Go 1.x
3131
id: setup-go
32-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
32+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
3333
with:
3434
go-version-file: go.mod
3535
cache: false
@@ -46,6 +46,6 @@ jobs:
4646
- name: Run go mod tidy
4747
working-directory: examples/${{ matrix.plugin }}
4848
run: go mod tidy
49-
- uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7
49+
- uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d # v7
5050
with:
5151
commit_message: "chore: Tidy"

.github/workflows/lint_golang.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 10
1818
steps:
1919
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
20-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
20+
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
2121
id: setup-go
2222
with:
2323
go-version-file: go.mod
@@ -33,6 +33,6 @@ jobs:
3333
${{ runner.os }}-go-${{ steps.setup-go.outputs.go-version }}-
3434
${{ runner.os }}-go-
3535
- name: golangci-lint
36-
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9
36+
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9
3737
with:
3838
version: v2.12.2

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2323
- name: Set up Go 1.x
2424
id: setup-go
25-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
25+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
2626
with:
2727
go-version-file: go.mod
2828
cache: false

0 commit comments

Comments
 (0)