Skip to content

Commit

Permalink
chore: add package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorgan committed Nov 23, 2024
1 parent dc25254 commit 4c39a2e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-hadoop/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ outputs:
description: 'Path to the Hadoop installation'

runs:
using: 'node16'
using: 'node20'
main: 'index.js'
1 change: 0 additions & 1 deletion .github/actions/setup-hadoop/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const core = require('@actions/core');
const cache = require('@actions/cache');
const tc = require('@actions/tool-cache');
const path = require('path');
const fs = require('fs');

async function setup() {
Expand Down
10 changes: 10 additions & 0 deletions .github/actions/setup-hadoop/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "setup-hadoop",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/cache": "^2.1.1",
"@actions/tool-cache": "^2.0.0"
}
}

0 comments on commit 4c39a2e

Please sign in to comment.