File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 1.0.1
2+
3+ - Fixed an issue where a module was missing from the build.
4+
15# 1.0.0
26
37- Will now install ` rustup ` if it does not exist in the environment.
Original file line number Diff line number Diff line change 11{
22 "name" : " @moonrepo/setup-rust" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "description" : " A GitHub action for setting up Rust and Cargo." ,
55 "main" : " dist/index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import crypto from 'node:crypto';
22import fs from 'node:fs' ;
33import os from 'node:os' ;
44import path from 'node:path' ;
5+ import { family } from 'detect-libc' ;
56import * as cache from '@actions/cache' ;
67import * as core from '@actions/core' ;
78import * as exec from '@actions/exec' ;
@@ -38,7 +39,6 @@ export async function downloadAndInstallBinstall(binDir: string) {
3839
3940 switch ( process . platform ) {
4041 case 'linux' : {
41- const { family } = await import ( 'detect-libc' ) ;
4242 let lib = 'gnu' ;
4343
4444 if ( ( await family ( ) ) === 'musl' ) {
You can’t perform that action at this time.
0 commit comments