@@ -6,19 +6,17 @@ import * as github from "@actions/github";
6
6
import * as glob from "@actions/glob" ;
7
7
import * as tc from "@actions/tool-cache" ;
8
8
import fs from "fs" ;
9
- import { createUnauthenticatedAuth } from "@octokit/auth-unauthenticated" ;
10
9
import * as os from "os" ;
11
10
import { join } from "node:path" ;
12
11
import { exit } from "process" ;
13
12
import * as semver from "semver" ;
14
13
15
- const octokit = core . getInput ( "token" )
16
- ? github . getOctokit ( core . getInput ( "token" ) )
17
- : github . getOctokit ( undefined ! , {
18
- authStrategy : createUnauthenticatedAuth ,
19
- auth : { reason : "no 'token' input" } ,
20
- } ) ;
21
-
14
+ const token = core . getInput ( "token" ) ;
15
+ if ( ! token ) {
16
+ core . setFailed ( 'GitHub token is required.' ) ;
17
+ process . exit ( 1 ) ;
18
+ }
19
+ const octokit = github . getOctokit ( token ) ;
22
20
const repoSet = {
23
21
owner : "typst" ,
24
22
repo : "typst" ,
@@ -82,7 +80,7 @@ if (cachePackage) {
82
80
linux : ( ) =>
83
81
join (
84
82
process . env . XDG_CACHE_HOME ||
85
- ( os . homedir ( ) ? join ( os . homedir ( ) , ".cache" ) : undefined ) ! ,
83
+ ( os . homedir ( ) ? join ( os . homedir ( ) , ".cache" ) : undefined ) ! ,
86
84
"typst/packages" ,
87
85
) ,
88
86
darwin : ( ) => join ( process . env . HOME ! , "Library/Caches" , "typst/packages" ) ,
@@ -109,7 +107,7 @@ if (cachePackage) {
109
107
}
110
108
} else {
111
109
core . warning (
112
- `${ cachePackage } was not found. Packages will not be cached.` ,
110
+ `${ cachePackage } is not found. Packages will not be cached.` ,
113
111
) ;
114
112
}
115
113
}
0 commit comments