Skip to content

Commit dfbba7c

Browse files
authored
Fix workflow paths for scan docker images action (#408)
* Fix workflow paths for scan docker images * Make paths more flexible to /
1 parent 5390bcb commit dfbba7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/scan-docker-images-skip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Scan docker images from the allowed docker images list"
33
on:
44
pull_request:
55
paths-ignore:
6-
- 'tests/tck-build-logic/src/main/resources/allowed-docker-images'
6+
- 'tests/tck-build-logic/src/main/resources/allowed-docker-images/**'
77

88
jobs:
99
build:

.github/workflows/scan-docker-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
# we should run this job if somebody wants to add/update allowed docker images
55
pull_request:
66
paths:
7-
- 'tests/tck-build-logic/src/main/resources/allowed-docker-images'
7+
- 'tests/tck-build-logic/src/main/resources/allowed-docker-images/**'
88
# we should run this job once a week to check if new vulnerabilities are found in existing images
99
schedule:
1010
- cron: "0 0 * * 6"

0 commit comments

Comments
 (0)