Skip to content

Commit

Permalink
Go 1.23 (#53)
Browse files Browse the repository at this point in the history
Closes #39.
  • Loading branch information
roman-khimov authored Feb 28, 2025
2 parents d604a12 + 1567a80 commit aa7378f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
cache: true

- name: Write coverage profile
Expand All @@ -47,14 +47,14 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-2022, macos-14 ]
go_versions: [ '1.22', '1.23' ]
go_versions: [ '1.23', '1.24' ]
exclude:
- os: macos-14
go_versions: '1.22'
go_versions: '1.23'
- os: windows-2022
go_versions: '1.22'
- os: ubuntu-latest
go_versions: '1.23'
- os: ubuntu-latest
go_versions: '1.24'
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -84,12 +84,12 @@ jobs:
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit aa7378f

Please sign in to comment.