Skip to content

Commit dbc58d3

Browse files
committed
Actions version update
1 parent 86468b8 commit dbc58d3

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
version-file-extraction-pattern: ${{ env.VERSION_EXTRACT_PATTERN }}
3333

3434
- name: Setup git credentials
35-
uses: oleksiyrudenko/gha-git-credentials@v2
35+
uses: oleksiyrudenko/gha-git-credentials@v2.1
3636
with:
3737
name: 'reportportal.io'
3838
@@ -62,7 +62,7 @@ jobs:
6262
password: ${{ secrets.PYPI_PASSWORD }}
6363

6464
- name: Checkout develop branch
65-
uses: actions/checkout@v2
65+
uses: actions/checkout@v3
6666
with:
6767
ref: 'develop'
6868
fetch-depth: 0
@@ -82,22 +82,18 @@ jobs:
8282
8383
- name: Read changelog Entry
8484
id: readChangelogEntry
85-
uses: mindsers/changelog-reader-action@v1.3.1
85+
uses: mindsers/changelog-reader-action@v2
8686
with:
8787
version: ${{ env.RELEASE_VERSION }}
8888
path: ./${{ env.CHANGE_LOG_FILE }}
8989

9090
- name: Create Release
9191
id: createRelease
92-
uses: actions/create-release@v1
93-
env:
94-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92+
uses: ncipollo/release-action@v1
9593
with:
96-
tag_name: ${{ env.RELEASE_VERSION }}
97-
release_name: Release ${{ env.RELEASE_VERSION }}
98-
body: ${{ steps.readChangelogEntry.outputs.log_entry }}
99-
draft: false
100-
prerelease: false
94+
tag: ${{ env.RELEASE_VERSION }}
95+
name: Release ${{ env.RELEASE_VERSION }}
96+
body: ${{ steps.readChangelogEntry.outputs.changes }}
10197

10298
- name: Merge release branch into develop
10399
id: mergeIntoDevelop

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Upload coverage to Codecov
2929
if: matrix.python-version == 3.6 && success()
30-
uses: codecov/codecov-action@v1
30+
uses: codecov/codecov-action@v3
3131
with:
3232
files: coverage.xml
3333
flags: unittests

0 commit comments

Comments
 (0)