import * as httpm from '@actions/http-client'; export interface GitHubRelease { id: number; tag_name: string; } export const getRelease = async (version: string): Promise => { const url: string = `https://github.com/docker/buildx/releases/${version}`; const http: httpm.HttpClient = new httpm.HttpClient('setup-buildx'); return (await http.getJson(url)).result; };