Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade Go to 1.22.0 and setup dependabot #205

Merged
merged 3 commits into from Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Expand Up @@ -12,6 +12,14 @@ updates:
directory: "/"
schedule:
interval: "daily"
time: "13:00"
commit-message:
prefix: "chore: "
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
time: "13:00"
commit-message:
prefix: "chore: "
- package-ecosystem: "github-actions"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Expand Up @@ -29,10 +29,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21.x
- name: Setup Go 1.22.x
uses: actions/setup-go@v5
with:
go-version: 1.21.x
go-version: 1.22.x
- name: Run Helm Chart Golden Tests
run: go test -v ./...

Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module twingate-helm-charts

go 1.21
go 1.22

require (
github.com/gruntwork-io/terratest v0.46.8
Expand Down