Skip to content

Commit b745985

Browse files
Further caching for test
1 parent ac2a338 commit b745985

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/seed.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ jobs:
2727
python: ${{ steps.python-changes.outputs.any_changed }}
2828
postman: ${{ steps.postman-changes.outputs.any_changed }}
2929
java: ${{ steps.java-changes.outputs.any_changed }}
30-
typescript: ${{ steps.typescript-changes.outputs.typescript }}
31-
go: ${{ steps.go-changes.outputs.go }}
32-
csharp: ${{ steps.csharp-changes.outputs.csharp }}
33-
php: ${{ steps.php-changes.outputs.php }}
34-
swift: ${{ steps.swift-changes.outputs.swift }}
35-
rust: ${{ steps.rust-changes.outputs.rust }}
30+
typescript: ${{ steps.typescript-changes.outputs.any_changed }}
31+
go: ${{ steps.go-changes.outputs.any_changed }}
32+
csharp: ${{ steps.csharp-changes.outputs.any_changed }}
33+
php: ${{ steps.php-changes.outputs.any_changed }}
34+
swift: ${{ steps.swift-changes.outputs.any_changed }}
35+
rust: ${{ steps.rust-changes.outputs.any_changed }}
3636
steps:
3737
- name: Checkout repo
3838
uses: actions/checkout@v4
39-
- uses: ./.github/actions/check-for-changed-files
39+
- uses: tj-actions/changed-files@v46
4040
id: seed-changes
4141
with:
4242
files: |
@@ -48,26 +48,26 @@ jobs:
4848
packages/cli/generation/ir-generator/**
4949
test-definitions/**
5050
test-definitions-openapi/**
51-
- uses: ./.github/actions/check-for-changed-files
51+
- uses: tj-actions/changed-files@v46
5252
id: ruby-changes
5353
with:
5454
files: |
5555
generators/ruby/**
5656
seed/ruby-sdk/**
5757
seed/ruby-model/**
58-
- uses: ./.github/actions/check-for-changed-files
58+
- uses: tj-actions/changed-files@v46
5959
id: ruby-v2-changes
6060
with:
6161
files: |
6262
generators/ruby-v2/**
6363
seed/ruby-sdk-v2/**
64-
- uses: ./.github/actions/check-for-changed-files
64+
- uses: tj-actions/changed-files@v46
6565
id: openapi-changes
6666
with:
6767
files: |
6868
generators/openapi/**
6969
seed/openapi/**
70-
- uses: ./.github/actions/check-for-changed-files
70+
- uses: tj-actions/changed-files@v46
7171
id: python-changes
7272
with:
7373
files: |
@@ -76,57 +76,57 @@ jobs:
7676
seed/pydantic-v2/**
7777
seed/python-sdk/**
7878
seed/fastapi/**
79-
- uses: ./.github/actions/check-for-changed-files
79+
- uses: tj-actions/changed-files@v46
8080
id: postman-changes
8181
with:
8282
files: |
8383
generators/postman/**
8484
seed/postman/**
85-
- uses: ./.github/actions/check-for-changed-files
85+
- uses: tj-actions/changed-files@v46
8686
id: java-changes
8787
with:
8888
files: |
8989
generators/java/**
9090
seed/java-sdk/**
9191
seed/java-model/**
9292
seed/java-spring/**
93-
- uses: ./.github/actions/check-for-changed-files
93+
- uses: tj-actions/changed-files@v46
9494
id: typescript-changes
9595
with:
9696
files: |
9797
typescript:
9898
generators/typescript/**
9999
seed/ts-sdk/**
100100
seed/ts-express/**
101-
- uses: ./.github/actions/check-for-changed-files
101+
- uses: tj-actions/changed-files@v46
102102
id: go-changes
103103
with:
104104
files: |
105105
generators/go/**
106106
seed/go-sdk/**
107107
seed/go-model/**
108108
seed/go-fiber/**
109-
- uses: ./.github/actions/check-for-changed-files
109+
- uses: tj-actions/changed-files@v46
110110
id: csharp-changes
111111
with:
112112
files: |
113113
generators/csharp/**
114114
seed/csharp-sdk/**
115115
seed/csharp-model/**
116-
- uses: tj-actions/changed-files@v46 #./.github/actions/check-for-changed-files
116+
- uses: tj-actions/changed-files@v46 #tj-actions/changed-files@v46
117117
id: php-changes
118118
with:
119119
files: |
120120
generators/php/**
121121
seed/php-sdk/**
122122
seed/php-model/**
123-
- uses: ./.github/actions/check-for-changed-files
123+
- uses: tj-actions/changed-files@v46
124124
id: swift-changes
125125
with:
126126
files: |
127127
generators/swift/**
128128
seed/swift-sdk/**
129-
- uses: ./.github/actions/check-for-changed-files
129+
- uses: tj-actions/changed-files@v46
130130
id: rust-changes
131131
with:
132132
files: |

0 commit comments

Comments
 (0)