Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
os: [ubuntu-latest, macos-latest]
# When updating this, make sure to also update the
# latest_go_version variable in internal/testing/runchecks.sh.
go-version: [1.26.x]
go-version: [1.27.x]
include:
- go-version: 1.25.x
- go-version: 1.26.x
os: ubuntu-latest

runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v6

Check failure on line 36 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 36 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

tests.yml:36: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v7

Check failure on line 40 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 40 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

tests.yml:40: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
fetch-depth: 2 # required for codecov
- name: Run Tests
shell: bash
run: 'internal/testing/runchecks.sh'
- uses: codecov/codecov-action@v7

Check failure on line 46 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 46 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

tests.yml:46: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
token: ${{ secrets.CODECOV_TOKEN }}
- if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion internal/testing/runchecks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ rootdir="$(pwd)"
# for the latest Go version.
latest_go_version=0
go_version=$(go version)
if [[ ${go_version} == *go1\.26* ]]; then
if [[ ${go_version} == *go1\.27* ]]; then
latest_go_version=1
fi
echo "Go Version: ${go_version}; latest=${latest_go_version}"
Expand Down
Loading