e2e: Use newer version of actions/runner(0.296.0)

This commit is contained in:
Yusuke Kuoka 2022-08-27 07:07:56 +00:00
parent dbd668ae2d
commit c143fd50b5
1 changed files with 5 additions and 3 deletions

View File

@ -38,6 +38,8 @@ var (
} }
testResultCMNamePrefix = "test-result-" testResultCMNamePrefix = "test-result-"
RunnerVersion = "2.296.0"
) )
// If you're willing to run this test via VS Code "run test" or "debug test", // If you're willing to run this test via VS Code "run test" or "debug test",
@ -435,7 +437,7 @@ func buildVars(repo string) vars {
Args: []testing.BuildArg{ Args: []testing.BuildArg{
{ {
Name: "RUNNER_VERSION", Name: "RUNNER_VERSION",
Value: "2.294.0", Value: RunnerVersion,
}, },
}, },
Image: runnerImage, Image: runnerImage,
@ -446,7 +448,7 @@ func buildVars(repo string) vars {
Args: []testing.BuildArg{ Args: []testing.BuildArg{
{ {
Name: "RUNNER_VERSION", Name: "RUNNER_VERSION",
Value: "2.294.0", Value: RunnerVersion,
}, },
}, },
Image: runnerDindImage, Image: runnerDindImage,
@ -457,7 +459,7 @@ func buildVars(repo string) vars {
Args: []testing.BuildArg{ Args: []testing.BuildArg{
{ {
Name: "RUNNER_VERSION", Name: "RUNNER_VERSION",
Value: "2.294.0", Value: RunnerVersion,
}, },
}, },
Image: runnerRootlessDindImage, Image: runnerRootlessDindImage,