Skip to content

Commit 360126d

Browse files
committed
🐛 fix(.github/workflows/test.yml): using recommended codecov version 4.0.1 now
changed action version
1 parent d2c9477 commit 360126d

File tree

2 files changed

+25
-26
lines changed

2 files changed

+25
-26
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@ jobs:
4444
run: bun run test
4545

4646
- name: 📤 📊 Upload coverage reports to Codecov
47-
uses: codecov/codecov-action@v4.5.0
48-
env:
49-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
47+
uses: codecov/codecov-action@v4.0.1
5048
with:
49+
token: ${{ secrets.CODECOV_TOKEN }}
5150
#fail_ci_if_error: true # optional (default = false)
5251
#files: ./coverage1.xml,./coverage2.xml # optional
53-
#flags: unittests # optional
52+
flags: unittests # optional
5453
name: ☂️ codecov-umbrella # optional
5554
verbose: true # optional (default = false)

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -131,79 +131,79 @@
131131
"cz-gitmoji-adapter": {
132132
"scopes": [
133133
".depcheckrc.json",
134-
".eslintrc.json",
135134
".eslintignore",
135+
".eslintrc.json",
136136
".gitignore",
137137
".prettierignore",
138138
".prettierrc.json",
139139
"license",
140140
"readme.md",
141-
"commitlint.config.ts",
142141
"commit-template.hbs",
142+
"commitlint.config.ts",
143143
"default-template.hbs",
144144
"emojitypescommitmessages.txt",
145145
"jest.config.json",
146146
"package-lock.json",
147-
"release.config.ts",
148147
"package.json",
148+
"release.config.ts",
149149
"renovate.json",
150150
"tsconfig.json",
151151
"typedoc.json",
152152
".vscode/settings.json",
153153
"public/.gitkeep",
154-
"repo_management_files/cz-type-extract.js",
155154
"repo_management_files/cz-emoji-type-extract.js",
155+
"repo_management_files/cz-type-extract.js",
156156
"repo_management_files/directorystructuredocument.md",
157+
"repo_management_files/extractfilescopes.js",
157158
"repo_management_files/genericcommitmessages.md",
158159
"repo_management_files/gitmojisemver-extract.js",
159-
"repo_management_files/extractfilescopes.js",
160+
"repo_management_files/issues.sh",
160161
"repo_management_files/labels.sh",
161162
"repo_management_files/packagejsondocument.md",
162-
"repo_management_files/issues.sh",
163+
".github/dependabot.yml",
164+
".github/workflows/build.yml",
165+
".github/workflows/docs.yml",
166+
".github/workflows/lint.yml",
167+
".github/workflows/pr.yml",
168+
".github/workflows/release.yml",
169+
".github/workflows/test.yml",
163170
".husky/commit-msg",
164171
".husky/prepare-commit-msg",
165172
".husky/_/.gitignore",
166173
".husky/_/applypatch-msg",
174+
".husky/_/commit-msg",
167175
".husky/_/h",
168176
".husky/_/post-applypatch",
169177
".husky/_/post-checkout",
170178
".husky/_/post-commit",
171179
".husky/_/post-merge",
172-
".husky/_/commit-msg",
173180
".husky/_/post-rewrite",
174181
".husky/_/pre-applypatch",
175182
".husky/_/pre-auto-gc",
176183
".husky/_/pre-commit",
184+
".husky/_/pre-push",
177185
".husky/_/pre-rebase",
178186
".husky/_/prepare-commit-msg",
179-
".husky/_/pre-push",
180-
".github/dependabot.yml",
181-
".github/workflows/build.yml",
182-
".github/workflows/docs.yml",
183-
".github/workflows/pr.yml",
184-
".github/workflows/release.yml",
185-
".github/workflows/lint.yml",
186-
".github/workflows/test.yml",
187187
"src/app.ts",
188188
"src/bin/.gitkeep",
189189
"src/configs/.gitkeep",
190+
"src/controllers/.gitkeep",
190191
"src/middleware/.gitkeep",
192+
"src/models/.gitkeep",
193+
"src/plugins/.gitkeep",
191194
"src/routes/.gitkeep",
192195
"src/utils/.gitkeep",
193-
"src/controllers/.gitkeep",
194-
"src/plugins/.gitkeep",
195196
"src/views/.gitkeep",
196-
"src/models/.gitkeep",
197197
"test/.gitkeep",
198-
"test/configs/.gitkeep",
199198
"test/bin/.gitkeep",
200-
"test/middleware/.gitkeep",
199+
"test/configs/.gitkeep",
201200
"test/controllers/.gitkeep",
201+
"test/middleware/.gitkeep",
202202
"test/models/.gitkeep",
203203
"test/plugins/.gitkeep",
204-
"test/views/.gitkeep",
205204
"test/routes/.gitkeep",
206-
"test/utils/.gitkeep"
205+
"test/utils/.gitkeep",
206+
"test/views/.gitkeep"
207207
],
208208
"questions": {
209209
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)