Skip to content

Commit 10bfdfb

Browse files
committed
ci: fix syntax
Signed-off-by: MichaIng <micha@dietpi.com>
1 parent bb59353 commit 10bfdfb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python_safety.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- run: sudo apt-get -q update
18-
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956
18+
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956
1919
- run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends install
2020
gcc libcurl4-openssl-dev libssl-dev
2121
- uses: actions/checkout@v4

.github/workflows/test_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
python-version: ${{ matrix.python }}
2929
- run: sudo apt-mark hold grub-efi-amd64-signed # GRUB does not always find the drive it was configured for
30-
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956
30+
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956
3131
- run: sudo apt-get -q update
3232
- run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends dist-upgrade
3333
- run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends install

.github/workflows/ubuntu_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: "Test on ${{ matrix.dist }}"
1919
steps:
2020
- run: sudo apt-mark hold grub-efi-amd64-signed # GRUB does not always find the drive it was configured for
21-
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956
21+
- run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956
2222
- run: sudo apt-get -q update
2323
- run: sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends dist-upgrade
2424
- run: sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends install

0 commit comments

Comments
 (0)