Skip to content

Commit

Permalink
ci: fix syntax
Browse files Browse the repository at this point in the history
Signed-off-by: MichaIng <[email protected]>
  • Loading branch information
MichaIng committed May 29, 2024
1 parent bb59353 commit 10bfdfb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- run: sudo apt-get -q update
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956
- run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends install
gcc libcurl4-openssl-dev libssl-dev
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
python-version: ${{ matrix.python }}
- run: sudo apt-mark hold grub-efi-amd64-signed # GRUB does not always find the drive it was configured for
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956
- run: sudo apt-get -q update
- run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends dist-upgrade
- run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: "Test on ${{ matrix.dist }}"
steps:
- run: sudo apt-mark hold grub-efi-amd64-signed # GRUB does not always find the drive it was configured for
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956
- run: sudo apt-get -q update
- run: sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends dist-upgrade
- run: sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends install
Expand Down

0 comments on commit 10bfdfb

Please sign in to comment.