Skip to content

Commit

Permalink
use crosup v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jun 22, 2023
1 parent 7088e75 commit f7e4bca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Crosup
uses: tsirysndr/setup-crosup@v1
with:
version: 'v0.4.4'
version: 'v0.4.5'
packages: |
deno
zig
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
version:
description: Crosup version to install
required: false
default: v0.4.4
default: v0.4.5
packages:
description: |
Whitespace separated, pkgs to supplement the environment. eg.
Expand Down
2 changes: 1 addition & 1 deletion dist/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default async (options) => {
};
};
function getDownloadUrl(options) {
const release = encodeURIComponent(options?.version ?? "v0.4.0");
const release = encodeURIComponent(options?.version ?? "v0.4.5");
const platform = {
darwin: "apple-darwin",
linux: "unknown-linux-gnu",
Expand Down
2 changes: 1 addition & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function getDownloadUrl(options?: {
os?: string;
arch?: string;
}): { url: string; cacheKey: string } {
const release = encodeURIComponent(options?.version ?? "v0.4.4");
const release = encodeURIComponent(options?.version ?? "v0.4.5");
const platform = {
darwin: "apple-darwin",
linux: "unknown-linux-gnu",
Expand Down

0 comments on commit f7e4bca

Please sign in to comment.