Skip to content

Commit

Permalink
fix: require go1.23 in github workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jochumdev committed Aug 31, 2024
1 parent def480c commit aedb2c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.22.5
go-version: "1.23"
check-latest: true
- name: Run Linters
run: ./scripts/test.sh lint all
Expand All @@ -30,7 +30,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.22.5
go-version: "1.23"
check-latest: true
- name: Run Unit Tests
run: ./scripts/test.sh test all
Expand All @@ -46,7 +46,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.22.5
go-version: "1.23"
check-latest: true
- name: Create Summary
run: ./scripts/test.sh summary all
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.21"
go-version: "1.23"
check-latest: true
- name: Run Linters
run: ./scripts/test.sh lint changes
Expand All @@ -28,7 +28,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.21"
go-version: "1.23"
check-latest: true
- name: Run Unit Tests
run: ./scripts/test.sh test changes
Expand All @@ -44,7 +44,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.21"
go-version: "1.23"
check-latest: true
- name: Create Summary
run: ./scripts/test.sh summary changes
Expand Down

0 comments on commit aedb2c0

Please sign in to comment.