Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use getEnv()
  • Loading branch information
mbg committed Jul 29, 2026
commit 2e251072b0a905f36699df95f6deabbff6a6ec5a
2 changes: 1 addition & 1 deletion lib/entry-points.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/start-proxy-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import * as core from "@actions/core";
import { ActionState } from "./action-common";
import * as actionsUtil from "./actions-util";
import { getGitHubVersion } from "./api-client";
import { Env } from "./environment";
import { FeatureEnablement, initFeatures } from "./feature-flags";
import { BuiltInLanguage, parseBuiltInLanguage } from "./languages";
import { getActionsLogger, Logger } from "./logging";
Expand Down Expand Up @@ -43,7 +42,7 @@ async function run(startedAt: Date) {
try {
const action: ActionState<["Logger", "Env", "Actions"]> = {
logger,
env: new Env(process.env),
env: util.getEnv(),
actions: actionsUtil.getActionsEnv(),
};

Expand Down
Loading