Skip to content

Commit 8e9ae56

Browse files
committed
ci: use latest git bcvk
To fix SELinux issues. Signed-off-by: Colin Walters <[email protected]>
1 parent b33cb5c commit 8e9ae56

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/actions/bootc-ubuntu-setup/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ runs:
7575
- name: Install libvirt and virtualization stack
7676
if: ${{ inputs.libvirt == 'true' }}
7777
shell: bash
78+
env:
79+
GH_TOKEN: ${{ github.token }}
7880
run: |
7981
set -xeuo pipefail
8082
export BCVK_VERSION=0.6.0
@@ -83,9 +85,9 @@ runs:
8385
echo LIBVIRT_DEFAULT_URI=qemu:///session >> $GITHUB_ENV
8486
td=$(mktemp -d)
8587
cd $td
86-
# Install bcvk
88+
# Install bcvk from PR 159
89+
gh run download 19640807620 --name bcvk-binary --repo bootc-dev/bcvk
8790
target=bcvk-$(arch)-unknown-linux-gnu
88-
/bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
8991
tar xzf ${target}.tar.gz
9092
sudo install -T ${target} /usr/bin/bcvk
9193
cd -

0 commit comments

Comments
 (0)