From 25fe497f3e4009fe8a28ea2a4d29c76e73f3a9f0 Mon Sep 17 00:00:00 2001 From: DavePearce Date: Tue, 19 Nov 2024 11:51:17 +1300 Subject: [PATCH] Remove `CONSTRAINTS_SSH_KEY` from Github Actions This removes the need for the `CONSTRAINTS_SSH_KEY` from the Github actions. This is no longer required since all relevant repositories are now public. --- .github/actions/setup-rust-corset/action.yml | 2 +- .github/workflows/gradle.yml | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/actions/setup-rust-corset/action.yml b/.github/actions/setup-rust-corset/action.yml index 0c18cd6230..2f68974af8 100644 --- a/.github/actions/setup-rust-corset/action.yml +++ b/.github/actions/setup-rust-corset/action.yml @@ -9,4 +9,4 @@ runs: - name: Install Corset shell: bash - run: RUSTFLAGS=-Awarnings cargo install --git ssh://git@github.com/ConsenSys/corset --tag v9.7.17 --locked --force + run: RUSTFLAGS=-Awarnings cargo install --git https://github.com/Consensys/corset.git --tag v9.7.17 --locked --force diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 5bde8141be..d02366fc38 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -58,11 +58,6 @@ jobs: if: ${{ inputs.tests-with-ssh }} uses: lhotari/action-upterm@v1 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.CONSTRAINTS_SSH_KEY }} - - name: Checkout repository uses: actions/checkout@v3 with: @@ -109,11 +104,6 @@ jobs: if: ${{ inputs.tests-with-ssh }} uses: lhotari/action-upterm@v1 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.CONSTRAINTS_SSH_KEY }} - - name: Checkout repository uses: actions/checkout@v3 with: