Skip to content

Commit 75297b8

Browse files
committed
chore(ci): use checkout@v3
1 parent 2d8c4f0 commit 75297b8

File tree

4 files changed

+8438
-23
lines changed

4 files changed

+8438
-23
lines changed

Diff for: .github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
build_and_test_action: # make sure build/ci work properly
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v3
1414
- run: |
1515
npm install
1616
npm run all
1717
1818
test_demo_app: # run the demo app's unit tests
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v3
2222
- run: |
2323
npm install
2424
npm run test:ci
@@ -27,7 +27,7 @@ jobs:
2727
test_action_and_deploy_demo: # make sure the action works on a clean machine without building
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v1
30+
- uses: actions/checkout@v3
3131
- name: 'Deploy demo app using action'
3232
uses: ./
3333
with:

Diff for: dist/index.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ module.exports =
1919
/******/ };
2020
/******/
2121
/******/ // Execute the module function
22-
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
22+
/******/ var threw = true;
23+
/******/ try {
24+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
25+
/******/ threw = false;
26+
/******/ } finally {
27+
/******/ if(threw) delete installedModules[moduleId];
28+
/******/ }
2329
/******/
2430
/******/ // Flag the module as loaded
2531
/******/ module.l = true;
@@ -593,9 +599,9 @@ module.exports = require("tls");
593599
/***/ }),
594600

595601
/***/ 18:
596-
/***/ (function() {
602+
/***/ (function(module) {
597603

598-
eval("require")("encoding");
604+
module.exports = eval("require")("encoding");
599605

600606

601607
/***/ }),

0 commit comments

Comments
 (0)