Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-cliain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: GIT | Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
SECRETS_AWS_MAINNET_SECRET_ACCESS_KEY: ${{ secrets.AWS_MAINNET_SECRET_ACCESS_KEY }}
steps:
- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ inputs.ref }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-send-postsync-hook-runtime-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
CARGO_INCREMENTAL: 0
steps:
- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: GIT | Get branch info & current commit sha.
id: vars
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
docker push ${{ env.ECR_LATEST }}

- name: GIT | Checkout aleph-apps repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
repository: Cardinal-Cryptography/aleph-apps
token: ${{ secrets.CI_GH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-excluded-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CARGO_INCREMENTAL: 0
steps:
- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install rust toolchain
uses: actions-rs/toolchain@v1
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/deploy-feature-envs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout repo
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Get branch name and commit SHA
id: get_branch
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
steps:
- name: checkout repo
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Delete old FE when redeploying
if: contains( github.event.pull_request.labels.*.name, env.LABEL_DEPLOYED)
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:


- name: GIT | Checkout aleph-apps repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
repository: Cardinal-Cryptography/aleph-apps
token: ${{ secrets.CI_GH_TOKEN }}
Expand Down Expand Up @@ -288,14 +288,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout repo
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Get branch name and commit SHA
id: get_branch
uses: ./.github/actions/get-branch

- name: GIT | Checkout aleph-apps repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
repository: Cardinal-Cryptography/aleph-apps
token: ${{ secrets.CI_GH_TOKEN }}
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Delete FE
uses: ./.github/actions/destroy-feature-environment
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Delete FE
uses: ./.github/actions/destroy-feature-environment
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
AWS_REGION: us-east-1 # this region is used by all public ECR repos
steps:
- name: GIT | Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: GIT | Get branch info & current commit sha.
id: vars
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
aleph-runtime-${{ steps.get_branch.outputs.sha_short }}.tar.gz

- name: GIT | Checkout aleph-apps repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
ref: mainnet
repository: Cardinal-Cryptography/aleph-apps
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
if: always()
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Send Slack message
uses: ./.github/actions/slack-notification
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
AWS_REGION: us-east-1 # this region is used by all public ECR repos
steps:
- name: GIT | Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: GIT | Get branch info & current commit sha.
id: vars
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
aleph-runtime-${{ steps.get_branch.outputs.sha_short }}.tar.gz

- name: GIT | Checkout aleph-apps repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
ref: testnet
repository: Cardinal-Cryptography/aleph-apps
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
if: always()
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Send Slack message
uses: ./.github/actions/slack-notification
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
AWS_REGION: eu-central-1
steps:
- name: GIT | Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: GIT | Get branch info & current commit sha.
id: vars
Expand All @@ -33,7 +33,7 @@ jobs:
aws-region: ${{ env.AWS_REGION }}

- name: GIT | Checkout aleph-apps repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
repository: Cardinal-Cryptography/aleph-apps
token: ${{ secrets.CI_GH_TOKEN }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
if: always()
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Send Slack message
uses: ./.github/actions/slack-notification
Expand Down
Loading