Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use forked github actions [DO-2056] #942

Merged
merged 1 commit into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
secret-ids: |
WEBHOOK, ${{ secrets.AWS_SECRET_NAME_SLACK_WEBHOOK }}
parse-json-secrets: true
- uses: webfactory/ssh-agent@v0.8.0
- uses: RDXWorks-actions/ssh-agent@master
with:
ssh-private-key: |
${{ env.SWIFT_SSH }}
Expand All @@ -76,11 +76,11 @@ jobs:
ruby-version: 3.1.2
bundler-cache: true

- uses: maxim-lobanov/setup-xcode@v1
- uses: RDXWorks-actions/setup-xcode@master
with:
xcode-version: "15.0.1"

- uses: webfactory/ssh-agent@v0.8.0
- uses: RDXWorks-actions/ssh-agent@master
with:
ssh-private-key: |
${{ env.SWIFT_SSH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
secret_prefix: 'SWIFT_ENGINE_TOOLKIT_SSH_KEY'
secret_name: ${{ secrets.AWS_SECRET_NAME_WALLET_SWIFT_SSH }}
parse_json: true
- uses: webfactory/ssh-agent@v0.8.0
- uses: RDXWorks-actions/ssh-agent@master
with:
ssh-private-key: |
${{ env.SWIFT_ENGINE_TOOLKIT_SSH_KEY }}
Expand Down Expand Up @@ -166,13 +166,13 @@ jobs:
secret-ids: |
FASTLANE_MATCH_REPO_SSH_KEY, ${{ secrets.AWS_SECRET_NAME_WALLET_FASTLANE_SSH }}
parse-json-secrets: true
- uses: webfactory/ssh-agent@v0.8.0
- uses: RDXWorks-actions/ssh-agent@master
with:
ssh-private-key: |
${{ env.SWIFT_ENGINE_TOOLKIT_SSH_KEY }}
${{ env.FASTLANE_MATCH_REPO_SSH_KEY }}

- uses: maxim-lobanov/setup-xcode@v1
- uses: RDXWorks-actions/setup-xcode@master
with:
xcode-version: "15.0.1"

Expand All @@ -193,7 +193,7 @@ jobs:
bundle exec fastlane tests

- name: Upload results
uses: kishikawakatsumi/xcresulttool@2b37f116695328d5e503ac8dadca0f1545a51da4 # v1.7.1
uses: RDXWorks-actions/xcresulttool@main
with:
path: build/test_output/results.xcresult
show-passed-tests: false
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
secret_prefix: 'SWIFT_ENGINE_TOOLKIT_SSH_KEY'
secret_name: ${{ secrets.AWS_SECRET_NAME_WALLET_SWIFT_SSH }}
parse_json: true
- uses: webfactory/ssh-agent@v0.8.0
- uses: RDXWorks-actions/ssh-agent@master
with:
ssh-private-key: |
${{ env.SWIFT_ENGINE_TOOLKIT_SSH_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: webfactory/ssh-agent@v0.8.0
- uses: RDXWorks-actions/ssh-agent@master
with:
ssh-private-key: |
${{ secrets.SWIFT_ENGINE_TOOLKIT_SSH_KEY }}
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
snyk sbom --all-projects --org=${{ secrets.SNYK_ORG_ID }} --format=cyclonedx1.4+json --json-file-output sbom.json
- name: Upload SBOM
uses: AButler/upload-release-assets@c94805dc72e4b20745f543da0f62eaee7722df7a # v2.0.2
uses: RDXWorks-actions/upload-release-assets@master
with:
files: sbom.json
repo-token: ${{ secrets.GITHUB_TOKEN }}
Loading