Skip to content

Commit 4ad4561

Browse files
committed
Attempt to fix biome
1 parent f0a272d commit 4ad4561

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
- name: Biome lint
131131
run: |
132132
. venv/bin/activate
133-
mkdir -p ./tmp && curl -sL "https://github.com/biomejs/biome/releases/latest/download/biome-linux-x64" -o ./tmp/biome && chmod +x ./tmp/biome
133+
mkdir -p ./tmp && curl -sL "https://github.com/biomejs/biome/releases/download/%40biomejs%2Fbiome%402.0.0/biome-darwin-arm64" -o ./tmp/biome && chmod +x ./tmp/biome
134134
pre-commit run --show-diff-on-failure --color=always --all-files --hook-stage manual biome
135135
- name: Lint markdown files
136136
run: |

scripts/setup_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ case "$arch" in
3131
x86_64) use_arch="linux-x64" ;;
3232
*) echo "Unsupported arch for biome cli version: $arch"; exit 2 ;;
3333
esac
34-
curl -sL "https://github.com/biomejs/biome/releases/latest/download/biome-${use_arch}" -o "${my_path}/tmp/biome"
34+
curl -sL "https://github.com/biomejs/biome/releases/download/%40biomejs%2Fbiome%402.0.0/biome-{$use_arch}" -o "${my_path}/tmp/biome"
3535

3636
# Make biome executable (if necessary)
3737
chmod +x "${my_path}/tmp/biome"

0 commit comments

Comments
 (0)