Skip to content

Commit d86672c

Browse files
committed
f gha 3
1 parent 21e2fe0 commit d86672c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/actions/container_task_prep/action.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,14 @@ runs:
1717
exec_and_capture apt update
1818
elif exists 'apt-get'; then
1919
exec_and_capture apt-get update
20+
elif exists 'dnf'; then
21+
exec_and_capture dnf clean all
22+
elif exists 'yum'; then
23+
exec_and_capture yum clean all
24+
elif exists 'zypper'; then
25+
exec_and_capture zypper refresh
26+
else
27+
echo "No package manager found."
28+
exit 1
2029
fi
2130
install_package wget

.github/workflows/pr_testing_install_build_artifact.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,6 @@ jobs:
5959
PT_version: "8.15.0"
6060
run: ./openvox_bootstrap/tasks/install_build_artifact_linux.sh
6161
- name: Verify openvox-agent is installed
62+
shell: bash
6263
run: |-
6364
[[ "$(/opt/puppetlabs/bin/puppet --version)" = "8.15.0" ]]

0 commit comments

Comments
 (0)