diff --git a/README.md b/README.md index 92612fe2..f1e7d184 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ GitHub Action for [Semantic Release][semantic-url]. ## Usage -### Step1: Set any [Semantic Release Configuration](https://github.com/semantic-release/semantic-release/blob/main/docs/usage/configuration.md#configuration) in your repository. +### Step1: Set any [Semantic Release Configuration](https://github.com/semantic-release/semantic-release/blob/master/docs/usage/configuration.md#configuration) in your repository. -### Step2: [Add Secrets](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets) in your repository for the [Semantic Release Authentication](https://github.com/semantic-release/semantic-release/blob/main/docs/usage/ci-configuration.md#authentication) Environment Variables. +### Step2: [Add Secrets](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets) in your repository for the [Semantic Release Authentication](https://github.com/semantic-release/semantic-release/blob/master/docs/usage/ci-configuration.md#authentication) Environment Variables. ### Step3: Add a [Workflow File](https://help.github.com/en/articles/workflow-syntax-for-github-actions) to your repository to create custom automated processes. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 36c22f2f..9bcab9c2 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,10 @@ +## [3.1.2](https://github.com/cycjimmy/semantic-release-action/compare/v3.1.1...v3.1.2) (2022-10-19) + + +### Bug Fixes + +* **actions:** update @actions/core to cope with new output ([3e7aded](https://github.com/cycjimmy/semantic-release-action/commit/3e7adedd114a31396550cb5ef5445170fae72f9e)) + ## [3.1.1](https://github.com/cycjimmy/semantic-release-action/compare/v3.1.0...v3.1.1) (2022-08-30) diff --git a/package-lock.json b/package-lock.json index b32c1bbe..25eaa381 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "@cycjimmy/semantic-release-action", - "version": "3.1.1", + "version": "3.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cycjimmy/semantic-release-action", - "version": "3.1.1", + "version": "3.1.2", "license": "MIT", "dependencies": { - "@actions/core": "^1.6.0", + "@actions/core": "^1.10.0", "@cycjimmy/awesome-js-funcs": "^4.0.4", "@semantic-release/changelog": "^6.0.1", "@semantic-release/git": "^10.0.1", @@ -17,9 +17,9 @@ } }, "node_modules/@actions/core": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.9.1.tgz", - "integrity": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", + "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", "dependencies": { "@actions/http-client": "^2.0.1", "uuid": "^8.3.2" @@ -5436,9 +5436,9 @@ }, "dependencies": { "@actions/core": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.9.1.tgz", - "integrity": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", + "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", "requires": { "@actions/http-client": "^2.0.1", "uuid": "^8.3.2" diff --git a/package.json b/package.json index 375c3a7b..304c4d42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cycjimmy/semantic-release-action", - "version": "3.1.1", + "version": "3.1.2", "description": "GitHub Action for Semantic Release", "main": "index.js", "scripts": { @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/cycjimmy/semantic-release-action#readme", "dependencies": { - "@actions/core": "^1.6.0", + "@actions/core": "^1.10.0", "@cycjimmy/awesome-js-funcs": "^4.0.4", "@semantic-release/changelog": "^6.0.1", "@semantic-release/git": "^10.0.1",