Skip to content

Commit c8198fd

Browse files
committed
switch to golang 1.25 in github actions
Signed-off-by: Eugene Klimov <eklimov@altinity.com>
1 parent 8a440cf commit c8198fd

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: steps.check-for-backend.outputs.has-backend == 'true'
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: '1.24'
36+
go-version: '1.25'
3737

3838

3939
- name: Install dependencies
@@ -48,11 +48,6 @@ jobs:
4848
- name: Build frontend
4949
run: npm run build
5050

51-
- name: check GOCOVERDIR before
52-
run: |
53-
mkdir -p ./coverage/
54-
ls -la ./coverage/
55-
5651
- name: Test backend
5752
if: steps.check-for-backend.outputs.has-backend == 'true'
5853
uses: magefile/mage-action@v3

.github/workflows/is-compatible.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Go environment
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: '1.24'
17+
go-version: '1.25'
1818

1919
- name: Install dependencies
2020
run: npm ci

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Go environment
3232
uses: actions/setup-go@v5
3333
with:
34-
go-version: '1.24'
34+
go-version: '1.25'
3535

3636
- name: Check for backend
3737
id: check-for-backend

0 commit comments

Comments
 (0)