Skip to content

Commit

Permalink
temp: hardcode the turbo version in turbo-affected
Browse files Browse the repository at this point in the history
  • Loading branch information
angusbayley committed Sep 6, 2024
1 parent 8cb1242 commit 5bdef3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/actions/turbo-affected/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { execSync } from "child_process";
import * as core from "@actions/core";
import packageJson from "../../../../package.json";
// import packageJson from "../../../../package.json";

async function main() {
const ref = core.getInput("ref");
const pkg = core.getInput("package") || "";
const command = core.getInput("command");
const turboVersion = packageJson.devDependencies.turbo;
const turboVersion = "2.1.1"; //packageJson.devDependencies.turbo;
console.log({ ref });
console.log({ pkg });
console.log({ command });
Expand Down

0 comments on commit 5bdef3f

Please sign in to comment.