Skip to content

Commit abc9dd1

Browse files
authored
Merge pull request #137 from reportportal/develop
Release 5.0.8
2 parents 949741a + 9ed7583 commit abc9dd1

File tree

7 files changed

+16
-13
lines changed

7 files changed

+16
-13
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @AmsterGet @Bam6ycha
1+
* @AmsterGet

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
npm config list
5555
npm publish
5656
env:
57-
NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }}
57+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
releaseVersion: ${{ steps.exposeVersion.outputs.releaseVersion }}
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
- name: Read version
2121
id: readVersion
2222
run: |
@@ -61,9 +61,9 @@ jobs:
6161
versionInfo: ${{ steps.readChangelogEntry.outputs.log_entry }}
6262
steps:
6363
- name: Checkout repository
64-
uses: actions/checkout@v2
64+
uses: actions/checkout@v3
6565
- name: Setup NodeJS
66-
uses: actions/setup-node@v2
66+
uses: actions/setup-node@v3
6767
with:
6868
node-version: '12'
6969
- name: Configure git
@@ -110,6 +110,7 @@ jobs:
110110
git checkout develop
111111
git merge master -Xtheirs --allow-unrelated-histories
112112
echo "${{ steps.bumpSnapshotVersion.outputs.next-version }}-SNAPSHOT" > ${{ env.versionFileName }}
113+
echo "patch" > ${{ env.versionFragmentFileName }}
113114
git status
114115
git add ${{ env.versionFileName }}
115116
git commit -m "${{ needs.calculate-version.outputs.releaseVersion }} -> ${{ steps.bumpSnapshotVersion.outputs.next-version }}-SNAPSHOT"
@@ -120,7 +121,7 @@ jobs:
120121
runs-on: ubuntu-latest
121122
steps:
122123
- name: Checkout repository
123-
uses: actions/checkout@v2
124+
uses: actions/checkout@v3
124125
- name: Create Release
125126
id: createRelease
126127
uses: actions/create-release@v1

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### Deprecated
2+
- Node.js 10 usage. This version is the latest that supports Node.js 10.
13

24
## [5.0.7] - 2023-11-20
35
### Fixed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.7
1+
5.0.8-SNAPSHOT

package-lock.json

Lines changed: 5 additions & 5 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
@@ -24,7 +24,7 @@
2424
"constants"
2525
],
2626
"dependencies": {
27-
"@reportportal/client-javascript": "^5.0.15",
27+
"@reportportal/client-javascript": "~5.0.15",
2828
"strip-ansi": "^6.0.1"
2929
},
3030
"devDependencies": {

0 commit comments

Comments
 (0)