Skip to content

Commit

Permalink
fix(gha): pin the cijoe version
Browse files Browse the repository at this point in the history
Previously, cijoe was installed using `pipx install cijoe`, which
fetches and installs the latest version. This approach can cause issues
if cijoe introduces breaking changes. To prevent compatibility problems,
pinning it to the current version (v0.9.45) ensures stability.

Signed-off-by: Simon A. F. Lund <[email protected]>
  • Loading branch information
safl committed Dec 17, 2024
1 parent fad1180 commit 77cbacb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autorun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Setup CIJOE and pipx
run: |
pipx install cijoe -f
pipx install cijoe==0.9.45 -f
pipx ensurepath
echo "$HOME/.local/bin" >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_qcow2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- name: Setup CIJOE and pipx
run: |
pipx install cijoe -f
pipx install cijoe==0.9.45 -f
pipx ensurepath
echo "$HOME/.local/bin" >> $GITHUB_PATH
Expand Down

0 comments on commit 77cbacb

Please sign in to comment.