Skip to content

Commit e740fb5

Browse files
committed
fix github action issue
1 parent f9c0c7e commit e740fb5

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/build-wheels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414

15+
- name: Workaround github issue https://github.com/actions/runner-images/issues/7192
16+
if: startsWith(matrix.os, 'ubuntu-')
17+
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
18+
1519
- name: Install required system packages for macOS
1620
if: startsWith(matrix.os, 'macos-')
1721
run: |

.github/workflows/code-quality.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111

12+
- name: Workaround github issue https://github.com/actions/runner-images/issues/7192
13+
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
14+
1215
- name: Install required system packages only for Ubuntu Linux
1316
run: |
1417
sudo apt-get update

.github/workflows/pytest-docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717

18+
- name: Workaround github issue https://github.com/actions/runner-images/issues/7192
19+
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
20+
1821
# Use GitHub's Docker registry to cache intermediate layers
1922
- run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u $GITHUB_ACTOR --password-stdin
2023
- run: docker pull docker.pkg.github.com/$GITHUB_REPOSITORY/aleph-sdk-python-build-cache || true

0 commit comments

Comments
 (0)