Skip to content

Commit cd2583f

Browse files
chore(release): bump to 3.1.2
1 parent 030a000 commit cd2583f

File tree

5 files changed

+69
-14
lines changed

5 files changed

+69
-14
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## 3.1.2
2+
### Fixes
3+
- #718 Update README.md
4+
- #851 Remove unsupported path_to_write_report argument
5+
- #898 codeql-analysis.yml
6+
- #901 Update README to contain correct information - inputs and negate feature
7+
- #955 fix: add in all the extra arguments for uploader
8+
9+
### Dependencies
10+
- #819 build(deps): bump openpgp from 5.4.0 to 5.5.0
11+
- #835 build(deps): bump node-fetch from 3.2.4 to 3.2.10
12+
- #840 build(deps): bump ossf/scorecard-action from 1.1.1 to 2.0.4
13+
- #841 build(deps): bump @actions/core from 1.9.1 to 1.10.0
14+
- #843 build(deps): bump @actions/github from 5.0.3 to 5.1.1
15+
- #869 build(deps): bump node-fetch from 3.2.10 to 3.3.0
16+
- #872 build(deps-dev): bump jest-junit from 13.2.0 to 15.0.0
17+
- #879 build(deps): bump decode-uri-component from 0.2.0 to 0.2.2
18+
- #889 build(deps): bump ossf/scorecard-action from 1.1.1 to 2.1.2
19+
- #895 build(deps): bump json5 from 2.2.1 to 2.2.3
20+
- #896 build(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2
21+
- #900 build(deps-dev): bump @vercel/ncc from 0.34.0 to 0.36.1
22+
- #905 build(deps-dev): bump typescript from 4.7.4 to 4.9.5
23+
- #911 build(deps-dev): bump @types/node from 16.11.40 to 18.13.0
24+
- #922 build(deps-dev): bump @types/node from 18.13.0 to 18.14.0
25+
- #924 build(deps): bump openpgp from 5.5.0 to 5.7.0
26+
- #927 build(deps-dev): bump @types/node from 18.14.0 to 18.14.2
27+
- #933 build(deps-dev): bump @types/node from 18.14.2 to 18.14.6
28+
- #937 build(deps-dev): bump @types/node from 18.14.6 to 18.15.0
29+
- #938 build(deps): bump node-fetch from 3.3.0 to 3.3.1
30+
- #945 build(deps-dev): bump @types/node from 18.15.0 to 18.15.5
31+
- #946 build(deps-dev): bump @types/node from 18.15.5 to 18.15.6
32+
- #947 build(deps-dev): bump @types/node from 18.15.6 to 18.15.10
33+
- #951 build(deps): bump ossf/scorecard-action from 2.1.2 to 2.1.3
34+
135
## 3.1.1
236
### Fixes
337
- #661 Update deprecation warning

action.yml

+31-10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ inputs:
55
token:
66
description: 'Repository upload token - get it from codecov.io. Required only for private repositories'
77
required: false
8+
file:
9+
description: 'Path to coverage file to upload'
10+
required: false
811
files:
912
description: 'Comma-separated list of files to upload'
1013
required: false
@@ -14,6 +17,9 @@ inputs:
1417
flags:
1518
description: 'Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome)'
1619
required: false
20+
full_report:
21+
description: Specify the path of a full Codecov report to re-upload
22+
required: false
1723
commit_parent:
1824
description: 'The commit SHA of the parent for which you are uploading coverage. If not present, the parent will be determined using the API of your repository provider. When using the repository providers API, the parent is determined via finding the closest ancestor to the commit.'
1925
required: false
@@ -26,18 +32,18 @@ inputs:
2632
fail_ci_if_error:
2733
description: 'Specify whether or not CI build should fail if Codecov runs into an error during upload'
2834
required: false
29-
file:
30-
description: 'Path to coverage file to upload'
31-
required: false
3235
functionalities:
33-
description: 'Comma-separated list, see the README for options and their usage'
36+
description: 'Comma-separated list, see the README for options and their usage. Options include `network`, `fixes`, `search`.'
3437
required: false
3538
gcov:
3639
description: 'Run with gcov support'
3740
required: false
3841
gcov_args:
3942
description: 'Extra arguments to pass to gcov'
4043
required: false
44+
gcov_executable:
45+
description: 'gcov executable to run. Defaults to gcov'
46+
required: false
4147
gcov_ignore:
4248
description: 'Paths to ignore during gcov gathering'
4349
required: false
@@ -50,6 +56,15 @@ inputs:
5056
name:
5157
description: 'User defined upload name. Visible in Codecov UI'
5258
required: false
59+
network_filter:
60+
description: 'Specify a filter on the files listed in the network section of the Codecov report. Useful for upload-specific path fixing'
61+
required: false
62+
network_prefix:
63+
description: 'Specify a prefix on files listed in the network section of the Codecov report. Useful to help resolve path fixing'
64+
required: false
65+
os:
66+
description: 'Override the assumed OS. Options are alpine | linux | macos | windows.'
67+
required: false
5368
override_branch:
5469
description: 'Specify the branch name'
5570
required: false
@@ -65,15 +80,21 @@ inputs:
6580
override_tag:
6681
description: 'Specify the git tag'
6782
required: false
68-
os:
69-
description: 'Override the assumed OS. Options are alpine | linux | macos | windows.'
70-
required: false
7183
root_dir:
7284
description: 'Used when not in git/hg project to identify project root directory'
7385
required: false
7486
slug:
7587
description: 'Specify the slug manually (Enterprise use)'
7688
required: false
89+
swift:
90+
description: 'Run with swift coverage support'
91+
required: false
92+
swift_project:
93+
description: 'Specify the swift project to speed up coverage conversion'
94+
required: false
95+
upstream_proxy:
96+
description: 'The upstream http proxy server to connect through'
97+
required: false
7798
url:
7899
description: 'Change the upload host (Enterprise use)'
79100
required: false
@@ -83,15 +104,15 @@ inputs:
83104
version:
84105
description: 'Specify which version of the Codecov Uploader should be used. Defaults to `latest`'
85106
required: false
86-
working-directory:
87-
description: 'Directory in which to execute codecov.sh'
88-
required: false
89107
xcode:
90108
description: 'Run with xcode support'
91109
required: false
92110
xcode_archive_path:
93111
description: 'Specify the xcode archive path. Likely specified as the -resultBundlePath and should end in .xcresult'
94112
required: false
113+
xtra_args:
114+
description: 'Add additional uploader args that may be missing in the Action'
115+
required: false
95116
branding:
96117
color: 'red'
97118
icon: 'umbrella'

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22072,7 +22072,7 @@ var core = __nccwpck_require__(2186);
2207222072
// EXTERNAL MODULE: ./node_modules/@actions/github/lib/github.js
2207322073
var github = __nccwpck_require__(5438);
2207422074
;// CONCATENATED MODULE: ./package.json
22075-
const package_namespaceObject = {"i8":"3.1.1"};
22075+
const package_namespaceObject = {"i8":"3.1.2"};
2207622076
;// CONCATENATED MODULE: ./src/buildExec.ts
2207722077

2207822078

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codecov-action",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "Upload coverage reports to Codecov from GitHub Actions",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)