Skip to content

Commit 8529b79

Browse files
committed
wip
1 parent c9d5ed5 commit 8529b79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import YAML from 'yaml'
33
import core from '@actions/core'
44
import 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

0 commit comments

Comments
 (0)