Skip to content

Commit

Permalink
Merge pull request #102 from radixdlt/DO-2056-use-forked-gha
Browse files Browse the repository at this point in the history
ci: use forked github actions [DO-2056]
  • Loading branch information
marek-karwacki-rdx authored Dec 7, 2023
2 parents 05cd759 + 5ff3121 commit 3a3f7db
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0

- name: Check workflow files
uses: reviewdog/action-actionlint@41f27961f74609625c7d2dd980be7e26906c5e7e # v1.35.0
uses: RDXWorks-actions/action-actionlint@main
with:
tool_name: actionlint
level: warning
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
- name: Generate SBOM
run: snyk sbom --file=./node-runner-cli/Pipfile --org=${{ env.SNYK_NETWORK_ORG_ID }} --format=cyclonedx1.4+json --json-file-output sbom.json
- name: Upload SBOM
uses: softprops/action-gh-release@c9b46fe7aad9f02afd89b12450b780f52dacfb2d
uses: RDXWorks-actions/action-gh-release@master
with:
files: sbom.json

Expand All @@ -141,15 +141,15 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: cancel running workflows
uses: styfle/cancel-workflow-action@0.11.0
uses: RDXWorks-actions/cancel-workflow-action@main
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Dump context
uses: crazy-max/ghaction-dump-context@v1
uses: RDXWorks-actions/ghaction-dump-context@master
- name: Install build essentials
run: sudo apt-get -y install build-essential
- name: setup python
Expand All @@ -166,7 +166,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2.6.1
uses: RDXWorks-actions/publish-unit-test-result-action@master
if: always()
with:
files: |
Expand All @@ -181,7 +181,7 @@ jobs:
**/junit/test-results.xml
- if: ${{ github.event_name == 'pull_request' }}
name: Get Cover
uses: orgoro/coverage@v3.1
uses: RDXWorks-actions/coverage@main
with:
coverageFile: node-runner-cli/coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -193,15 +193,15 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: cancel running workflows
uses: styfle/cancel-workflow-action@0.11.0
uses: RDXWorks-actions/cancel-workflow-action@main
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Dump context
uses: crazy-max/ghaction-dump-context@v1
uses: RDXWorks-actions/ghaction-dump-context@master
- name: setup python
uses: actions/setup-python@v4.5.0
with:
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
mv ./babylonnode babylonnode-ubuntu-22.04
- if: ${{ github.event_name == 'release' }}
name: Upload radixcli ubuntu binary
uses: softprops/action-gh-release@c9b46fe7aad9f02afd89b12450b780f52dacfb2d
uses: RDXWorks-actions/action-gh-release@master
with:
files: |
babylonnode-ubuntu-22.04
Expand All @@ -299,7 +299,7 @@ jobs:
mv ./babylonnode babylonnode-ubuntu-20.04
- if: ${{ github.event_name == 'release' }}
name: Upload radixcli ubuntu binary
uses: softprops/action-gh-release@c9b46fe7aad9f02afd89b12450b780f52dacfb2d
uses: RDXWorks-actions/action-gh-release@master
with:
files: |
babylonnode-ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: RDXWorks-actions/release-drafter@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3a3f7db

Please sign in to comment.