Skip to content

Commit 977a0e9

Browse files
fix: upgrade to Go 1.23 (#125)
* fix: updated dependencies to Go 1.23 * ci: removed nodejs dep and migrated to goreleaser * ci: added AWS regions file step
1 parent 19fe870 commit 977a0e9

25 files changed

+656
-10233
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ updates:
99
directory: "/"
1010
schedule:
1111
interval: "monthly"
12+
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "monthly"
17+
target-branch: "main"
18+
commit-message:
19+
prefix: "chore:"

.github/workflows/build.yml

Lines changed: 0 additions & 297 deletions
This file was deleted.

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
schedule:
1010
- cron: '0 10 * * 0'
1111

12+
env:
13+
GO_VERSION: '1.23'
14+
1215
jobs:
1316
analyze:
1417
name: Analyze
@@ -33,7 +36,7 @@ jobs:
3336
- name: Set up Go
3437
uses: actions/setup-go@v4
3538
with:
36-
go-version: '1.22'
39+
go-version: ${{ env.GO_VERSION }}
3740
check-latest: true
3841
id: go
3942

.github/workflows/pull_request.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ permissions:
99
contents: read
1010
packages: write
1111

12+
env:
13+
GO_VERSION: '1.23'
14+
1215
jobs:
1316

1417
run-ci:
@@ -30,9 +33,9 @@ jobs:
3033
steps:
3134

3235
- name: Set up Go
33-
uses: actions/setup-go@v4
36+
uses: actions/setup-go@v5
3437
with:
35-
go-version: '1.22'
38+
go-version: ${{ env.GO_VERSION }}
3639
check-latest: true
3740
id: go
3841

@@ -48,7 +51,7 @@ jobs:
4851
aws ec2 describe-regions --all-regions --region us-east-1 --query "Regions[].RegionName" --output text >> cmd/aws-regions.txt
4952
5053
- name: Run golangci-lint
51-
uses: golangci/golangci-lint-action@v5.2.0
54+
uses: golangci/golangci-lint-action@v6.1.0
5255
with:
5356
args: -v
5457

@@ -86,7 +89,7 @@ jobs:
8689

8790

8891
- name: Login to GHCR
89-
uses: docker/login-action@v3.1.0
92+
uses: docker/login-action@v3
9093
with:
9194
registry: ghcr.io
9295
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)