@@ -144,6 +144,8 @@ test.serial("load empty config", async (t) => {
144144 const logger = getRunnerLogger ( true ) ;
145145 const languages = "javascript,python" ;
146146
147+ setupActionsVars ( tempDir , tempDir ) ;
148+
147149 const codeql = createStubCodeQL ( {
148150 async betterResolveLanguages ( ) {
149151 return {
@@ -185,6 +187,8 @@ test.serial("load code quality config", async (t) => {
185187 const logger = getRunnerLogger ( true ) ;
186188 const languages = "actions" ;
187189
190+ setupActionsVars ( tempDir , tempDir ) ;
191+
188192 const codeql = createStubCodeQL ( {
189193 async betterResolveLanguages ( ) {
190194 return {
@@ -237,6 +241,8 @@ test.serial(
237241 const logger = getRunnerLogger ( true ) ;
238242 const languages = "javascript" ;
239243
244+ setupActionsVars ( tempDir , tempDir ) ;
245+
240246 const codeql = createStubCodeQL ( {
241247 async betterResolveLanguages ( ) {
242248 return {
@@ -475,6 +481,8 @@ test.serial("load non-existent input", async (t) => {
475481
476482test . serial ( "load non-empty input" , async ( t ) => {
477483 return await withTmpDir ( async ( tempDir ) => {
484+ setupActionsVars ( tempDir , tempDir ) ;
485+
478486 const codeql = createStubCodeQL ( {
479487 async betterResolveLanguages ( ) {
480488 return {
0 commit comments