Skip to content

Commit 7a1aed9

Browse files
committed
Update actions-exec-listener
1 parent d4bc5ae commit 7a1aed9

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as core from '@actions/core'
2-
import exec from 'actions-exec-listener'
2+
import * as exec from 'actions-exec-listener'
33
import { LayerCache } from './src/LayerCache'
44
import { ImageDetector } from './src/ImageDetector'
55

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"dependencies": {
99
"@actions/cache": "^1.0.2",
1010
"@actions/core": "^1.2.6",
11+
"@actions/exec": "^1.0.4",
1112
"@types/recursive-readdir": "^2.2.0",
12-
"actions-exec-listener": "^0.0.2",
13+
"actions-exec-listener": "0.1.0-beta",
1314
"crypto": "^1.0.1",
1415
"native-promise-pool": "^3.15.0",
1516
"recursive-readdir": "^2.2.2",

src/ImageDetector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import exec from 'actions-exec-listener'
1+
import * as exec from 'actions-exec-listener'
22
import * as core from '@actions/core'
33

44
export class ImageDetector {

src/LayerCache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as path from 'path'
2-
import exec from 'actions-exec-listener'
2+
import * as exec from 'actions-exec-listener'
33
import crypto from 'crypto'
44
import * as core from '@actions/core'
55
import * as cache from '@actions/cache'

yarn.lock

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.2.6.tgz#a78d49f41a4def18e88ce47c2cac615d5694bf09"
2323
integrity sha512-ZQYitnqiyBc3D+k7LsgSBmMDVkOVidaagDG7j3fOym77jNunWRuYx7VSHa9GNfFZh+zh61xsCjRj4JxMZlDqTA==
2424

25-
"@actions/exec@^1.0.1", "@actions/exec@^1.0.3":
25+
"@actions/exec@^1.0.1", "@actions/exec@^1.0.4":
2626
version "1.0.4"
2727
resolved "https://registry.yarnpkg.com/@actions/exec/-/exec-1.0.4.tgz#99d75310e62e59fc37d2ee6dcff6d4bffadd3a5d"
2828
integrity sha512-4DPChWow9yc9W3WqEbUj8Nr86xkpyE29ZzWjXucHItclLbEW6jr80Zx4nqv18QL6KK65+cifiQZXvnqgTV6oHw==
@@ -217,12 +217,10 @@ abort-controller@^3.0.0:
217217
dependencies:
218218
event-target-shim "^5.0.0"
219219

220-
actions-exec-listener@^0.0.2:
221-
version "0.0.2"
222-
resolved "https://registry.yarnpkg.com/actions-exec-listener/-/actions-exec-listener-0.0.2.tgz#432de329a6dd0e3e9154ba7cadd1ce16fb00bc0c"
223-
integrity sha512-Z3CFR2PYYuV8lRy744QxYu6hCIlf7AUcQzRR2FhIH/r0S2QVAyExex2mPZirThY4+wSmIN/xfC0J55hd2pHpzg==
224-
dependencies:
225-
"@actions/exec" "^1.0.3"
220+
actions-exec-listener@0.1.0-beta:
221+
version "0.1.0-beta"
222+
resolved "https://registry.yarnpkg.com/actions-exec-listener/-/actions-exec-listener-0.1.0-beta.tgz#d66754be1b00715799a3c45956a7ebc5e31b26ca"
223+
integrity sha512-Ag8T/tf0YkrLevpzLd5Zwt73yZz5Iaw7Pr44oj92sTMzegME+6ED1rIGi4q7DEtYXuSGvZbQQ2MNtzyxQzjV+w==
226224

227225
arg@^4.1.0:
228226
version "4.1.3"

0 commit comments

Comments
 (0)