Skip to content

Commit ca59ea7

Browse files
committed
Ensure Update and Upgrade in action
Baremetal jobs were failling because of dpkg failed to process the grub-efi-amd64-signed package, according to some articles online, we can avoid this problem by ensuring we have the latest packages installed. https://askubuntu.com/questions/1276111/error-upgrading-grub-efi-amd64-signed-special-device-old-ssd-does-not-exist https://forum.hestiacp.com/t/ubuntu-20-04-installation-error/4323
1 parent 40c7737 commit ca59ea7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

action.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ inputs:
2222
runs:
2323
using: "composite"
2424
steps:
25+
- name: Run update and upgrade
26+
run: sudo apt update && sudo apt -y upgrade
27+
shell: bash
2528
- name: Install python pip
2629
run: python -m pip install --upgrade pip
2730
shell: bash

0 commit comments

Comments
 (0)