Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Go 1.23 #53

Merged
merged 2 commits into from
Feb 28, 2025
Merged
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
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
Loading