Skip to content

Commit

Permalink
Turn on GHA dependabot (#131)
Browse files Browse the repository at this point in the history
Bump checkout and setup-go actions to newer versions. I think this is causing the CI issue:
'''
golangci-lint run ./...
level=error msg="Running error: context loading failed: no go files to analyze"
'''

Signed-off-by: joannelynch92 <[email protected]>
  • Loading branch information
joannelynch92 authored Nov 15, 2024
1 parent 62299cb commit e41fed1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ updates:
registries: []
schedule:
interval: daily
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
registries:
- github-hpe
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
go: [ '1.21' ]
name: Go ${{ matrix.go }} CI test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Run Trivy vulnerability scanner (go.mod)
uses: aquasecurity/[email protected]
Expand Down

0 comments on commit e41fed1

Please sign in to comment.