File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ name: 'PR Tests'
44on :
55 push :
66 branches :
7- - master
7+ - main
88 pull_request :
99 branches :
10- - master
10+ - main
1111
1212jobs :
1313 shellcheck :
@@ -20,21 +20,20 @@ jobs:
2020 run : shellcheck tasks/*.sh
2121
2222 test-install-task-on-ubuntu :
23- runs-on : ubuntu-latest
23+ # Perforce hasn't yet released bolt on 24.04.
24+ runs-on : ubuntu-22.04
2425 needs : shellcheck
2526 steps :
2627 - uses : actions/checkout@v4
27- # - name: Install dependencies
28- # run: sudo apt wget
2928 - name : Install Bolt
3029 run : |-
31- wget https://apt.puppet.com/puppet-tools-release-noble .deb
32- sudo dpkg -i puppet-tools-release-noble .deb
30+ wget https://apt.puppet.com/puppet-tools-release-jammy .deb
31+ sudo dpkg -i puppet-tools-release-jammy .deb
3332 sudo apt update
3433 sudo apt install -y puppet-bolt
3534 - name : Install module dependencies
3635 run : bolt module install
3736 - name : Run openvox-agent install task
3837 run : bolt task run openvox_bootstrap::install --targets localhost
3938 - name : Verify openvox-agent is installed
40- run : puppet --version
39+ run : test -n $( puppet --version)
You can’t perform that action at this time.
0 commit comments