From 40c336c81651813f4dfa23969f6efe0f4d0c6131 Mon Sep 17 00:00:00 2001 From: Alexandre Bruyant Date: Wed, 3 Jan 2024 12:03:33 +0000 Subject: [PATCH] Update .github/workflows/ci.yml --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11b6718..a5b5656 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.21 - name: Build run: go build -v -o main.wasm ./... @@ -63,19 +63,19 @@ jobs: working_directory: "./client" steps: - name: Download React app - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: react-app path: app - name: Download WASM program - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: wasm path: app - name: Upload react app - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: react-app-wasm path: app @@ -87,7 +87,7 @@ jobs: outputs: cid: ${{ steps.web3.outputs.cid }} steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: react-app-wasm path: react-app-wasm