Skip to content

Commit

Permalink
Merge pull request #301 from nugit/develop
Browse files Browse the repository at this point in the history
Next Release
  • Loading branch information
limtingzhi authored Feb 14, 2024
2 parents a2b155b + 3e3ca12 commit 93642ef
Show file tree
Hide file tree
Showing 11 changed files with 2,031 additions and 1,430 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
if: ${{ github.event_name == 'workflow_run' }}
with:
job_id: 'release'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: './createReleaseAction'
with:
token: ${{ secrets.GH_TOKEN }}
head: develop
base: master
title: Next Release
reviewers: 'moroine,limtingzhi'
reviewers: 'limtingzhi'
4 changes: 2 additions & 2 deletions .github/workflows/deploy-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
uses: nugit/[email protected]
with:
job_id: 'deploy-install'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- run: |
git config user.name github-actions
git config user.email [email protected]
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
needs: deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Merge master -> develop
uses: devmasx/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/onprem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
onprem:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: './.'
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: './.'
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- if: ${{ inputs.skip }}
run: echo "Skipping"
- if: ${{ ! inputs.skip }}
uses: actions/checkout@v3
uses: actions/checkout@v4
- if: ${{ ! inputs.skip }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'npm'
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# [3.1.0-beta.1](https://github.com/nugit/actions-pr-changelog/compare/v3.0.3-beta.1...v3.1.0-beta.1) (2024-02-14)


### Bug Fixes

* bump dotenv from 16.3.1 to 16.3.2 ([be670d1](https://github.com/nugit/actions-pr-changelog/commit/be670d12d4713678676197b7b1af16ce542fb456))
* bump dotenv from 16.3.2 to 16.4.1 ([45b3247](https://github.com/nugit/actions-pr-changelog/commit/45b3247b7a7b4000372f72dc0087635fc2b506d2))
* bump dotenv from 16.4.1 to 16.4.3 ([836a34e](https://github.com/nugit/actions-pr-changelog/commit/836a34eab49a7f1d1b4b6071a677666ed2275866))


### Features

* update minor dependencies ([3d80fe5](https://github.com/nugit/actions-pr-changelog/commit/3d80fe56d7368ac4ab1d02af3b6c35a79616ebfb))

## [3.0.3-beta.1](https://github.com/nugit/actions-pr-changelog/compare/v3.0.2...v3.0.3-beta.1) (2023-11-10)


### Bug Fixes

* bump @actions/core from 1.10.0 to 1.10.1 ([4b6997e](https://github.com/nugit/actions-pr-changelog/commit/4b6997e70158609e485917c1fefd6fa6ce3455b1))

## [3.0.2](https://github.com/nugit/actions-pr-changelog/compare/v3.0.1...v3.0.2) (2023-07-12)


Expand Down
2 changes: 1 addition & 1 deletion dist/changelogAction/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ class OidcClient {
.catch(error => {
throw new Error(`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}`);
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
Expand Down
2 changes: 1 addition & 1 deletion dist/createRelease/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ class OidcClient {
.catch(error => {
throw new Error(`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}`);
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
Expand Down
Loading

0 comments on commit 93642ef

Please sign in to comment.