You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-24Lines changed: 24 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ don't allow this because they don't work on a level of individual jobs or steps.
46
46
## Example
47
47
48
48
```yaml
49
-
- uses: dorny/paths-filter@v3
49
+
- uses: dorny/paths-filter@v4
50
50
id: changes
51
51
with:
52
52
filters: |
@@ -72,7 +72,7 @@ For more scenarios see [examples](#examples) section.
72
72
73
73
## What's New
74
74
75
-
- New major release `v3` after update to Node 20 [Breaking change]
75
+
- New major release `v4` after update to Node 24 [Breaking change]
76
76
- Add `ref` input parameter
77
77
- Add `list-files: csv` format
78
78
- Configure matrix job to run for each folder with changes using `changes` output
@@ -84,7 +84,7 @@ For more information, see [CHANGELOG](https://github.com/dorny/paths-filter/blob
84
84
## Usage
85
85
86
86
```yaml
87
-
- uses: dorny/paths-filter@v3
87
+
- uses: dorny/paths-filter@v4
88
88
with:
89
89
# Defines filters applied to detected changed files.
90
90
# Each filter has a name and a list of rules.
@@ -192,8 +192,8 @@ jobs:
192
192
tests:
193
193
runs-on: ubuntu-latest
194
194
steps:
195
-
- uses: actions/checkout@v4
196
-
- uses: dorny/paths-filter@v3
195
+
- uses: actions/checkout@v6
196
+
- uses: dorny/paths-filter@v4
197
197
id: filter
198
198
with:
199
199
filters: |
@@ -237,7 +237,7 @@ jobs:
237
237
frontend: ${{ steps.filter.outputs.frontend }}
238
238
steps:
239
239
# For pull requests it's not necessary to checkout the code
0 commit comments