Skip to content

Commit

Permalink
chore(release): 3.1.1
Browse files Browse the repository at this point in the history
## [3.1.1](v3.1.0...v3.1.1) (2022-10-20)

### Bug Fixes

* **ci:** rebuild and republish to use new branch and workflows ([0c99fb3](0c99fb3))
  • Loading branch information
paambaati committed Oct 20, 2022
1 parent 0c99fb3 commit 75b02a4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [3.1.1](https://github.com/paambaati/codeclimate-action/compare/v3.1.0...v3.1.1) (2022-10-20)


### Bug Fixes

* **ci:** rebuild and republish to use new branch and workflows ([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))

# [3.1.0] - 2022-10-14
### Changed
- Updated base runtime version to Node.js 16.x - via [`#622`](https://github.com/paambaati/codeclimate-action/pull/622). This closes [`#621`](https://github.com/paambaati/codeclimate-action/issues/621). Thanks @fabn!
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This action requires that you set the [`CC_TEST_REPORTER_ID`](https://docs.codec
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.3.0
uses: paambaati/codeclimate-action@v3.1.1
env:
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
with:
Expand All @@ -41,7 +41,7 @@ When you've already generated the coverage report in a previous step and wish to
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.3.0
uses: paambaati/codeclimate-action@v3.1.1
env:
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
```
Expand All @@ -53,7 +53,7 @@ This action supports basic glob patterns to search for files matching given patt
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.3.0
uses: paambaati/codeclimate-action@v3.1.1
env:
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
with:
Expand All @@ -67,7 +67,7 @@ steps:
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.3.0
uses: paambaati/codeclimate-action@v3.1.1
env:
# Set CC_TEST_REPORTER_ID as secret of your repo
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
Expand Down Expand Up @@ -108,7 +108,7 @@ module.exports = {
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.3.0
uses: paambaati/codeclimate-action@v3.1.1
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
with:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeclimate-action",
"version": "3.1.0",
"version": "3.1.1",
"private": true,
"description": "Publish code coverage to Code Climate",
"main": "lib/main.js",
Expand Down

0 comments on commit 75b02a4

Please sign in to comment.