From 9c56ff39f61132b3bbd41bd299a73c68b233a41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 10 Feb 2024 10:52:35 +0000 Subject: [PATCH] CI: bump bash image version We've been testing with Bash 5.2 for some time. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a559299f..3e2a57dd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,10 +20,10 @@ jobs: if: matrix.os == 'ubuntu-latest' - run: GOARCH=386 go test -count=1 ./... if: matrix.os == 'ubuntu-latest' - - name: confirm tests with Bash 5.1 + - name: confirm tests with Bash 5.2 run: | go install mvdan.cc/dockexec@latest - CGO_ENABLED=0 go test -run TestRunnerRunConfirm -exec 'dockexec bash:5.1' ./interp + CGO_ENABLED=0 go test -run TestRunnerRunConfirm -exec 'dockexec bash:5.2' ./interp if: matrix.os == 'ubuntu-latest' # Static checks from this point forward. Only run on one Go version and on