From 488f43b6a2cd3611df0d65939a2cd01515607751 Mon Sep 17 00:00:00 2001 From: josojo Date: Wed, 6 Dec 2023 15:40:24 +0100 Subject: [PATCH 1/2] deleting updatedeps.yml --- .github/workflows/updatedeps.yml | 46 -------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/updatedeps.yml diff --git a/.github/workflows/updatedeps.yml b/.github/workflows/updatedeps.yml deleted file mode 100644 index e4a0b69884..0000000000 --- a/.github/workflows/updatedeps.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Update dependencies -on: - schedule: - - cron: '* */6 * * *' - workflow_dispatch: -jobs: - updatedeps: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Install Go - uses: actions/setup-go@v3 - with: - go-version: "1.21.x" - env: - GOARCH: "amd64" - - - name: Install Protoc - uses: arduino/setup-protoc@v1 - - - name: Install protoc-gen-go - run: | - go install github.com/golang/protobuf/protoc-gen-go@latest - go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest - - - name: Update deps - env: - DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} - DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} - GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - run: make update-external-dependencies - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 - with: - token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - commit-message: update external dependencies - title: Update external dependencies - body: Check for new images, test vectors and proto files and update the code to use them. - branch: update-external-dependencies - base: develop - author: int-bot - committer: int-bot From d17bb5da9ae1bb8896109cdf0b0693e2744be764 Mon Sep 17 00:00:00 2001 From: josojo Date: Wed, 6 Dec 2023 15:44:18 +0100 Subject: [PATCH 2/2] testing a deployment --- .github/workflows/push-docker-develop.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-docker-develop.yml b/.github/workflows/push-docker-develop.yml index aaa824348e..5c04dbe81f 100644 --- a/.github/workflows/push-docker-develop.yml +++ b/.github/workflows/push-docker-develop.yml @@ -2,6 +2,7 @@ on: push: branches: - develop + - testDeploy jobs: build: @@ -29,4 +30,4 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | - hermeznetwork/zkevm-node:develop + josojo/zkevm-node:develop