File tree Expand file tree Collapse file tree 4 files changed +12
-17
lines changed
actions/bootc-ubuntu-setup Expand file tree Collapse file tree 4 files changed +12
-17
lines changed Original file line number Diff line number Diff line change 1- 10decade10bbbb5d7dea158661b612eb743ebad7
1+ 6e1ebf7ec65fa194adf29d96dac8fb83a80b791a
Original file line number Diff line number Diff line change @@ -65,24 +65,19 @@ runs:
6565 - name : Install libvirt and virtualization stack
6666 if : ${{ inputs.libvirt == 'true' }}
6767 shell : bash
68- env :
69- GH_TOKEN : ${{ github.token }}
7068 run : |
7169 set -xeuo pipefail
72- export BCVK_VERSION=0.8 .0
73- /bin/time -f '%E %C' sudo apt install -y libkrb5-dev pkg-config libvirt-dev genisoimage qemu-utils qemu-kvm virtiofsd libvirt-daemon-system python3-virt-firmware
70+ export BCVK_VERSION=0.9 .0
71+ /bin/time -f '%E %C' sudo apt install -y libkrb5-dev pkg-config libvirt-dev genisoimage qemu-utils qemu-kvm virtiofsd libvirt-daemon-system
7472 # Something in the stack is overriding this, but we want session right now for bcvk
7573 echo LIBVIRT_DEFAULT_URI=qemu:///session >> $GITHUB_ENV
7674 td=$(mktemp -d)
7775 cd $td
78- # Install bcvk from PR 172
79- gh run download 20107212783 --name bcvk-binary-tests --repo bootc-dev/bcvk
80- sudo install -m 755 bcvk /usr/bin/bcvk
81- # Install bcvk from release
82- # target=bcvk-$(arch)-unknown-linux-gnu
83- # /bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
84- # tar xzf ${target}.tar.gz
85- # sudo install -T ${target} /usr/bin/bcvk
76+ # Install bcvk
77+ target=bcvk-$(arch)-unknown-linux-gnu
78+ /bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
79+ tar xzf ${target}.tar.gz
80+ sudo install -T ${target} /usr/bin/bcvk
8681 cd -
8782 rm -rf "$td"
8883
Original file line number Diff line number Diff line change 2020
2121 steps :
2222 - name : " Checkout code"
23- uses : actions/checkout@v6
23+ uses : actions/checkout@v4
2424 with :
2525 persist-credentials : false
2626
3737 publish_results : true
3838
3939 - name : " Upload artifact"
40- uses : actions/upload-artifact@v6
40+ uses : actions/upload-artifact@v4
4141 with :
4242 name : SARIF file
4343 path : results.sarif
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ jobs:
2121 owner : ${{ github.repository_owner }}
2222
2323 - name : Checkout
24- uses : actions/checkout@v6
24+ uses : actions/checkout@v5
2525 with :
2626 token : ${{ steps.token.outputs.token }}
2727 fetch-depth : 0
2828
2929 - name : Automatic Rebase
30- uses : peter-evans/rebase@v4
30+ uses : peter-evans/rebase@v3
3131 with :
3232 token : ${{ steps.token.outputs.token }}
3333
You can’t perform that action at this time.
0 commit comments