Merge pull request 'build: use go toolchain' (#360) from build/use-go-toolchain into main

Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/360
pull/363/head
Michael Kriese 2024-12-04 11:18:05 +00:00
commit b8ccb30612
2 changed files with 13 additions and 1 deletions

View File

@ -44,6 +44,16 @@ jobs:
with:
go-version-file: go.mod
- name: validate go version
run: |
set -ex
toolchain=$(grep -oP '(?<=toolchain ).+' go.mod)
version=$(go version | cut -d' ' -f3)
if [ "$toolchain" != "$version" ]; then
echo "go version mismatch: $toolchain <> $version"
exit 1
fi
- run: make vet
- run: make build

4
go.mod
View File

@ -1,6 +1,8 @@
module gitea.com/gitea/act_runner
go 1.23.3
go 1.23
toolchain go1.23.3
require (
code.gitea.io/actions-proto-go v0.4.0