Skip to content

Commit

Permalink
⬆️ Bump the actions-deps group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the actions-deps group with 2 updates: [actions/setup-go](https://github.com/actions/setup-go) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action).


Updates `actions/setup-go` from 4 to 5
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v4...v5)

Updates `golangci/golangci-lint-action` from 3 to 5
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3...v5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-deps
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored May 1, 2024
1 parent 5db3ad0 commit 3375edd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- run: go mod download
Expand All @@ -26,7 +26,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- run: go test -v $(go list ./... | grep -v "/infra/")
Expand All @@ -37,7 +37,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Run repository tests
Expand All @@ -50,7 +50,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v3
- uses: golangci/golangci-lint-action@v5
with:
version: latest
args: "--timeout=5m"
Expand Down

0 comments on commit 3375edd

Please sign in to comment.