We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9514d7 commit 8410a82Copy full SHA for 8410a82
.github/workflows/manifest/action.yml
@@ -6,5 +6,5 @@ outputs:
6
description: 'the name of the file.'
7
8
runs:
9
- using: 'node16'
10
- main: 'index.js'
+ using: 'node20'
+ main: 'index.mjs'
.github/workflows/manifest/index.js renamed to .github/workflows/manifest/index.mjs
@@ -1,6 +1,6 @@
1
-const core = require('@actions/core');
2
-const github = require('@actions/github');
3
-const fs = require('fs');
+import * as core from '@actions/core';
+import * as github from '@actions/github';
+import * as fs from 'fs';
4
5
try {
const json = fs.readFileSync('manifest.json').toString();
0 commit comments