Update src/download/download-latest.ts

Co-authored-by: Kevin Stillhammer <kevin.stillhammer@gmail.com>
This commit is contained in:
pollenJP(@'ω'@) 2024-11-30 09:27:48 +09:00 committed by GitHub
parent 170dfd48ce
commit d20494ac36
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
import { OWNER, REPO } from "../utils/constants";
import * as github from "@actions/github";
export async function getLatestReleaseVersion(githubToken: string) {
export async function getLatestVersion(githubToken: string) {
const octokit = github.getOctokit(githubToken);
const { data: latestRelease } = await octokit.rest.repos.getLatestRelease({