Skip to content

Commit

Permalink
use crosup v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jun 22, 2023
1 parent dca448d commit 34fc77a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.6'
version: 'v0.4.7'
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.6
default: v0.4.7
packages:
description: |
Whitespace separated, pkgs to supplement the environment. eg.
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.6");
const release = encodeURIComponent(options?.version ?? "v0.4.7");
const platform = {
darwin: "apple-darwin",
linux: "unknown-linux-gnu",
Expand Down

0 comments on commit 34fc77a

Please sign in to comment.