File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35985,13 +35985,13 @@ var __webpack_exports__ = {};
3598535985
3598635986
3598735987
35988- function run() {
35988+ async function run() {
3598935989 _actions_core__WEBPACK_IMPORTED_MODULE_2__.startGroup('Gettng the Ruby version')
3599035990 getRubyVersion('dev.yml')
3599135991 _actions_core__WEBPACK_IMPORTED_MODULE_2__.endGroup()
3599235992
3599335993 _actions_core__WEBPACK_IMPORTED_MODULE_2__.startGroup('Setting up Linux dependencies')
35994- setupDependencies('tmp/.shopify-build/**/*.yml')
35994+ await setupDependencies('tmp/.shopify-build/**/*.yml')
3599535995 _actions_core__WEBPACK_IMPORTED_MODULE_2__.endGroup()
3599635996}
3599735997
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ import YAML from 'yaml'
33import core from '@actions/core'
44import exec from '@actions/exec'
55
6- export function run ( ) {
6+ export async function run ( ) {
77 core . startGroup ( 'Gettng the Ruby version' )
88 getRubyVersion ( 'dev.yml' )
99 core . endGroup ( )
1010
1111 core . startGroup ( 'Setting up Linux dependencies' )
12- setupDependencies ( 'tmp/.shopify-build/**/*.yml' )
12+ await setupDependencies ( 'tmp/.shopify-build/**/*.yml' )
1313 core . endGroup ( )
1414}
1515
You can’t perform that action at this time.
0 commit comments