Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/fuzzing-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
fuzzing:
name: Fuzzing
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
# Checkout this repository
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
gofmt:
name: go fmt
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v6
Expand All @@ -26,7 +26,7 @@ jobs:

govet:
name: go vet
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v6
Expand All @@ -39,7 +39,7 @@ jobs:

staticcheck:
name: staticcheck
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v6
Expand All @@ -56,7 +56,7 @@ jobs:

unittesting:
name: unit testing (Go ${{ matrix.go }})
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
go: [ '1.20', '1.19' ]
Expand Down
Loading