Skip to content

Commit 8dd6a97

Browse files
authored
feat(pipeline): use local actions (#152)
* feat(pipeline): use local actions
1 parent ef7c650 commit 8dd6a97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/NuGetCD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# create version
2121
- name: Bump version and push tag
2222
id: tag_version
23-
uses: mathieudutour/github-tag-action@v6.0
23+
uses: loekd/github-tag-action@v6.1
2424
with:
2525
github_token: ${{ secrets.GITHUB_TOKEN }}
2626
dry_run: false
@@ -51,7 +51,7 @@ jobs:
5151

5252
# create GH release
5353
- name: Create a GitHub release
54-
uses: ncipollo/release-action@v1
54+
uses: loekd/release-action@v1
5555
with:
5656
tag: ${{ steps.tag_version.outputs.new_tag }}
5757
name: Release ${{ steps.tag_version.outputs.new_tag }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# create version
2828
- name: Bump version and push tag (what-if)
2929
id: tag_version
30-
uses: mathieudutour/github-tag-action@v6.0
30+
uses: loekd/github-tag-action@v6.1
3131
with:
3232
github_token: ${{ secrets.GITHUB_TOKEN }}
3333
dry_run: true
@@ -56,7 +56,7 @@ jobs:
5656

5757
#Publish test results
5858
- name: Publish Test Results
59-
uses: EnricoMi/publish-unit-test-result-action/composite@v2
59+
uses: loekd/publish-unit-test-result-action/composite@v2
6060
if: always()
6161
with:
6262
trx_files: "**/*.trx"

0 commit comments

Comments
 (0)