From 47d797a30d2fc3b12be985cf19d1988d225e1d6a Mon Sep 17 00:00:00 2001 From: Marcin Date: Thu, 16 May 2024 08:04:28 +0200 Subject: [PATCH] A0-2999: Run all workflows on node20 --- .github/workflows/build-and-push.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index 2946733..1219250 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -21,7 +21,7 @@ jobs: if: github.event_name == 'pull_request' steps: - name: GIT | Checkout Source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: DOCKER | Build image and run test run: make build-ink-dev-x86_64 && make test-contract-x86_64 @@ -34,10 +34,10 @@ jobs: github.event_name == 'workflow_dispatch' steps: - name: GIT | Checkout Source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: AWS | Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_MAINNET_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_MAINNET_SECRET_ACCESS_KEY }}