File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed 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
+
1
5
# 1.0.0
2
6
3
7
- Will now install ` rustup ` if it does not exist in the environment.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @moonrepo/setup-rust" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"description" : " A GitHub action for setting up Rust and Cargo." ,
5
5
"main" : " dist/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import crypto from 'node:crypto';
2
2
import fs from 'node:fs' ;
3
3
import os from 'node:os' ;
4
4
import path from 'node:path' ;
5
+ import { family } from 'detect-libc' ;
5
6
import * as cache from '@actions/cache' ;
6
7
import * as core from '@actions/core' ;
7
8
import * as exec from '@actions/exec' ;
@@ -38,7 +39,6 @@ export async function downloadAndInstallBinstall(binDir: string) {
38
39
39
40
switch ( process . platform ) {
40
41
case 'linux' : {
41
- const { family } = await import ( 'detect-libc' ) ;
42
42
let lib = 'gnu' ;
43
43
44
44
if ( ( await family ( ) ) === 'musl' ) {
You can’t perform that action at this time.
0 commit comments