Skip to content

Commit b410a34

Browse files
authored
Github Actions: Upgrade runs-on image from ubuntu-22.04 to ubtuntu-24.04 (#170)
1 parent 18c7753 commit b410a34

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/testing.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ on:
1212
jobs:
1313
gofmt:
1414
name: go fmt (Go ${{ matrix.go }})
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
strategy:
1717
matrix:
18-
go: [ '1.22', '1.21' ]
18+
go: ["1.22", "1.21"]
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -29,10 +29,10 @@ jobs:
2929

3030
govet:
3131
name: go vet (Go ${{ matrix.go }})
32-
runs-on: ubuntu-22.04
32+
runs-on: ubuntu-24.04
3333
strategy:
3434
matrix:
35-
go: [ '1.22', '1.21' ]
35+
go: ["1.22", "1.21"]
3636

3737
steps:
3838
- uses: actions/checkout@v4
@@ -45,10 +45,10 @@ jobs:
4545

4646
staticcheck:
4747
name: staticcheck (Go ${{ matrix.go }})
48-
runs-on: ubuntu-22.04
48+
runs-on: ubuntu-24.04
4949
strategy:
5050
matrix:
51-
go: [ '1.22', '1.21' ]
51+
go: ["1.22", "1.21"]
5252

5353
steps:
5454
- uses: actions/checkout@v4
@@ -65,10 +65,10 @@ jobs:
6565

6666
unittesting:
6767
name: unit testing (Go ${{ matrix.go }})
68-
runs-on: ubuntu-22.04
68+
runs-on: ubuntu-24.04
6969
strategy:
7070
matrix:
71-
go: [ '1.22', '1.21' ]
71+
go: ["1.22", "1.21"]
7272

7373
steps:
7474
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)