Skip to content

Commit 6a6e870

Browse files
committed
Add brew update to unblock homebrew PR check
1 parent 76a8210 commit 6a6e870

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.devcontainer/linux-homebrew/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ RUN curl https://raw.githubusercontent.com/DonJayamanne/vscode-jupyter/container
1010
RUN echo "# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh." >> ~/.zshrc
1111
RUN echo "[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh" >> ~/.zshrc
1212

13-
# Install Pythone
13+
# Install Python
14+
RUN brew update
1415
RUN brew install python@3.12 python@3.11
1516

1617
# Install Rust

.github/workflows/pr-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,9 @@ jobs:
395395
# Homebrew
396396
- name: Homebrew Python
397397
if: startsWith( matrix.image, 'homebrew')
398-
run: brew install python@3.12 python@3.11
398+
run: |
399+
brew update
400+
brew install python@3.12 python@3.11
399401
shell: bash
400402

401403
# Rust

0 commit comments

Comments
 (0)