3030 matrix :
3131 os : [ubuntu-latest, macos-latest, windows-latest]
3232 # Do not forget to bump every 6 months!
33- gover : ["1.18 "]
33+ gover : ["1.19 "]
3434 env :
3535 PYTHONDONTWRITEBYTECODE : x
3636 steps :
@@ -101,7 +101,7 @@ jobs:
101101 # Windows.
102102 os : [ubuntu-latest, macos-latest, windows-latest]
103103 # Do not forget to bump every 6 months!
104- gover : ["1.18 "]
104+ gover : ["1.19 "]
105105 env :
106106 PYTHONDONTWRITEBYTECODE : x
107107 steps :
@@ -161,8 +161,8 @@ jobs:
161161 - name : ' Check: no executable was committed (ubuntu)'
162162 if : always() && matrix.os == 'ubuntu-latest'
163163 run : |
164- if find . -path '*.sh' -prune -o -path ./.git -prune -o -type f -executable -print | grep -e . ; then
165- echo 'Do not commit executables beside shell scripts '
164+ if find . -path ./.git -prune -o -type f -executable -print | grep -e . ; then
165+ echo 'Do not commit executables'
166166 false
167167 fi
168168 - name : ' Check: addlicense; all sources have a license header (ubuntu)'
@@ -179,10 +179,10 @@ jobs:
179179 echo "- ${FILE}" >> _gofmt.txt
180180 done
181181 cat _gofmt.txt
182- echo "## ⚠ gofmt Failed" >> _comments.txt
183- echo "" >> _comments.txt
184- cat _gofmt.txt >> _comments.txt
185- echo "" >> _comments.txt
182+ echo "## ⚠ gofmt Failed" >> ../ _comments.txt
183+ echo "" >> ../ _comments.txt
184+ cat _gofmt.txt >> ../ _comments.txt
185+ echo "" >> ../ _comments.txt
186186 false
187187 fi
188188 - name : " Check: misspelling; code doesn't contain misspelling (ubuntu)"
@@ -191,10 +191,10 @@ jobs:
191191 ERR=$(misspell .)
192192 if ! test -z "$ERR"; then
193193 echo "$ERR"
194- echo "## ⚠ misspell Failed" >> _comments.txt
195- echo "" >> _comments.txt
196- echo "$ERR" >> _comments.txt
197- echo "" >> _comments.txt
194+ echo "## ⚠ misspell Failed" >> ../ _comments.txt
195+ echo "" >> ../ _comments.txt
196+ echo "$ERR" >> ../ _comments.txt
197+ echo "" >> ../ _comments.txt
198198 false
199199 fi
200200 - name : ' Send comments'
@@ -269,7 +269,10 @@ jobs:
269269 fail-fast : false
270270 matrix :
271271 os : [ubuntu-latest]
272- gover : ['1.13.15']
272+ # https://github.com/golang/go/issues/55078
273+ # golang.org/x/sys/unix broke on Go versions before 1.17. Not worth
274+ # fixing.
275+ gover : ['1.17.13']
273276 env :
274277 PYTHONDONTWRITEBYTECODE : x
275278 steps :
@@ -293,7 +296,7 @@ jobs:
293296 matrix :
294297 os : [ubuntu-latest]
295298 # Do not forget to bump every 6 months!
296- gover : ["1.18 "]
299+ gover : ["1.19 "]
297300 permissions :
298301 security-events : write
299302 steps :
0 commit comments