From 34afa266a8630cb05f0dcbb7153c84d60af3ce7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Bu=C5=88ata?= Date: Tue, 12 Nov 2024 11:19:58 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pipeline.yaml | 7 +++++-- README.md | 8 ++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 759c2bd..46cd365 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -1,11 +1,14 @@ -on: [push] +on: + push: + branches: + - master jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Wake Arena environment uses: ./ diff --git a/README.md b/README.md index 7358d5b..737d4f5 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Wake environment - uses: Ackee-Blockchain/wake-arena-setup-action@0.1.0 + uses: Ackee-Blockchain/wake-arena-setup-action@0.1.1 - name: Wake up - run: wake --version + run: wake-arena --help ``` -In the above example, the action is used after the code is checked out to set up an environment (install Wake and Foundry) and in the last step the `wake` command is executed. +In the above example, the action is used after the code is checked out to set up an environment (install Wake Arena) and in the last step the `wake` command is executed.