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 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