fix(cd): use namespace imports for actions packages (#583)

This commit is contained in:
Sam Potts
2026-02-20 11:59:49 +11:00
committed by GitHub
parent b78c6ce7b1
commit 604f40605b
+2 -2
View File
@@ -1,5 +1,5 @@
import core from '@actions/core';
import github from '@actions/github';
import * as core from '@actions/core';
import * as github from '@actions/github';
const GH_TOKEN = process.env.GITHUB_TOKEN;