File tree 2 files changed +8
-2
lines changed 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -765,7 +765,11 @@ workflowWithCopyright(
765
765
update = true
766
766
),
767
767
// 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()
769
773
)
770
774
executeActionStep = usesSelf(
771
775
name = " Install default absent tool" ,
Original file line number Diff line number Diff line change @@ -1434,7 +1434,9 @@ jobs:
1434
1434
with :
1435
1435
distribution : ' ${{ matrix.distribution.user-id }}'
1436
1436
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')
1438
1440
- id : ' step-3'
1439
1441
name : ' Install default absent tool'
1440
1442
uses : ' ./'
You can’t perform that action at this time.
0 commit comments