File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -765,7 +765,11 @@ workflowWithCopyright(
765765 update = true
766766 ),
767767 // work-around for https://bugs.kali.org/view.php?id=6672
768- condition = " matrix.distribution.user-id != 'kali-linux'"
768+ // and https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/2069555
769+ condition = """
770+ (matrix.distribution.user-id != 'kali-linux')
771+ && (matrix.distribution.user-id != 'Ubuntu-24.04')
772+ """ .trimIndent()
769773 )
770774 executeActionStep = usesSelf(
771775 name = " Install default absent tool" ,
Original file line number Diff line number Diff line change @@ -1434,7 +1434,9 @@ jobs:
14341434 with :
14351435 distribution : ' ${{ matrix.distribution.user-id }}'
14361436 update : ' true'
1437- if : ' matrix.distribution.user-id != '' kali-linux'' '
1437+ if : |-
1438+ (matrix.distribution.user-id != 'kali-linux')
1439+ && (matrix.distribution.user-id != 'Ubuntu-24.04')
14381440 - id : ' step-3'
14391441 name : ' Install default absent tool'
14401442 uses : ' ./'
You can’t perform that action at this time.
0 commit comments