diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 87246215..eebe3ec0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -472,6 +472,13 @@ jobs: elif test -r /usr/x86_64-linux-gnu/include/proc_service.h; then \ cat /usr/x86_64-linux-gnu/include/proc_service.h; \ fi + if test ${{ matrix.language }} == 'go'; then \ + if test -x "$(which go)"; then \ + stat "$(which go)" && go version && go env; \ + else \ + sync && echo "no usable 'go' binary found"; \ + fi; \ + fi - name: Extra coverage build (C) if: matrix.language == 'c-cpp' && success() diff --git a/.yamllint.yml b/.yamllint.yml index e3911f5e..deba2639 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -1,4 +1,5 @@ --- +# https://yamllint.readthedocs.io/en/stable/configuration.html extends: default rules: diff --git a/go.mod b/go.mod index 99163f5a..8644c039 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module src/gdb/testsuite/gdb.go -go 1.23.2 +go 1.23 diff --git a/go.work b/go.work new file mode 100644 index 00000000..a7f474dc --- /dev/null +++ b/go.work @@ -0,0 +1 @@ +go 1.23.2