File tree Expand file tree Collapse file tree 4 files changed +12
-16
lines changed
actions/bootc-ubuntu-setup Expand file tree Collapse file tree 4 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 1- 10decade10bbbb5d7dea158661b612eb743ebad7
1+ 81ea4256bec2b09cbfe95a1cbf8669003866dba1
Original file line number Diff line number Diff line change @@ -65,24 +65,20 @@ 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
70+ export BCVK_VERSION=0.9.0
71+ # see https://github.com/bootc-dev/bcvk/issues/176
7372 /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
7473 # Something in the stack is overriding this, but we want session right now for bcvk
7574 echo LIBVIRT_DEFAULT_URI=qemu:///session >> $GITHUB_ENV
7675 td=$(mktemp -d)
7776 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
77+ # Install bcvk
78+ target=bcvk-$(arch)-unknown-linux-gnu
79+ /bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
80+ tar xzf ${target}.tar.gz
81+ sudo install -T ${target} /usr/bin/bcvk
8682 cd -
8783 rm -rf "$td"
8884
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