Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit 5fad1aa

Browse files
committed
chore(release): 2.3.0
# [2.3.0](v2.2.6...v2.3.0) (2022-10-20) ### Bug Fixes * **ci:** better version tagging ([e7ede07](e7ede07)) * **deps:** add missing dev-only dep to unblock typescript build ([9e22dcb](9e22dcb)) * fix quote escaping ([b952316](b952316)) * make the after-build error message intuitive ([de9fc1d](de9fc1d)) * unset default for coverageCommand ([843392a](843392a)) ### Features * checksum ang GPG verification utilities. ([8a68e94](8a68e94)) * declate new input option in action yaml ([dffe183](dffe183)) * implement verification methods ([3597522](3597522)) * verify reporter download ([#429](#429)) ([e4483ed](e4483ed))
1 parent 79333ec commit 5fad1aa

File tree

4 files changed

+27
-8
lines changed

4 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# [2.3.0](https://github.com/paambaati/codeclimate-action/compare/v2.2.6...v2.3.0) (2022-10-20)
2+
3+
4+
### Bug Fixes
5+
6+
* **ci:** better version tagging ([e7ede07](https://github.com/paambaati/codeclimate-action/commit/e7ede07acfbc6a654693402829004a85e680e713))
7+
* **deps:** add missing dev-only dep to unblock typescript build ([9e22dcb](https://github.com/paambaati/codeclimate-action/commit/9e22dcb3b7b5b5992a31f3577cf113dc2e950e03))
8+
* fix quote escaping ([b952316](https://github.com/paambaati/codeclimate-action/commit/b952316beee3b903d42039bf8c627ee4c07fc228))
9+
* make the after-build error message intuitive ([de9fc1d](https://github.com/paambaati/codeclimate-action/commit/de9fc1d31232bb8bf30513bedf53ff40231b108d))
10+
* unset default for coverageCommand ([843392a](https://github.com/paambaati/codeclimate-action/commit/843392a8c1176f873b5fecc54e31ce6e8ac32d59))
11+
12+
13+
### Features
14+
15+
* checksum ang GPG verification utilities. ([8a68e94](https://github.com/paambaati/codeclimate-action/commit/8a68e94c2970eea2ea0be901707e4baf241869e3))
16+
* declate new input option in action yaml ([dffe183](https://github.com/paambaati/codeclimate-action/commit/dffe1839031e38034aeb1434c930f4a9524204a3))
17+
* implement verification methods ([3597522](https://github.com/paambaati/codeclimate-action/commit/3597522e3aad9926fedb6dd418ec3d8b77aed0c1))
18+
* verify reporter download ([#429](https://github.com/paambaati/codeclimate-action/issues/429)) ([e4483ed](https://github.com/paambaati/codeclimate-action/commit/e4483ed4ba41c889bad43c01fb00606224851627))
19+
120
# Changelog
221
All notable changes to this project will be documented in this file.
322

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This action requires that you set the [`CC_TEST_REPORTER_ID`](https://docs.codec
2626
```yaml
2727
steps:
2828
- name: Test & publish code coverage
29-
uses: paambaati/codeclimate-action@v3.1.0
29+
uses: paambaati/codeclimate-action@v2.3.0
3030
env:
3131
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
3232
with:
@@ -41,7 +41,7 @@ When you've already generated the coverage report in a previous step and wish to
4141
```yaml
4242
steps:
4343
- name: Test & publish code coverage
44-
uses: paambaati/codeclimate-action@v3.1.0
44+
uses: paambaati/codeclimate-action@v2.3.0
4545
env:
4646
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
4747
```
@@ -53,7 +53,7 @@ This action supports basic glob patterns to search for files matching given patt
5353
```yaml
5454
steps:
5555
- name: Test & publish code coverage
56-
uses: paambaati/codeclimate-action@v3.1.0
56+
uses: paambaati/codeclimate-action@v2.3.0
5757
env:
5858
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
5959
with:
@@ -67,7 +67,7 @@ steps:
6767
```yaml
6868
steps:
6969
- name: Test & publish code coverage
70-
uses: paambaati/codeclimate-action@v3.1.0
70+
uses: paambaati/codeclimate-action@v2.3.0
7171
env:
7272
# Set CC_TEST_REPORTER_ID as secret of your repo
7373
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
@@ -108,7 +108,7 @@ module.exports = {
108108
```yaml
109109
steps:
110110
- name: Test & publish code coverage
111-
uses: paambaati/codeclimate-action@v3.1.0
111+
uses: paambaati/codeclimate-action@v2.3.0
112112
env:
113113
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
114114
with:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeclimate-action",
3-
"version": "3.1.0",
3+
"version": "2.3.0",
44
"private": true,
55
"description": "Publish code coverage to Code Climate",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)