From 8f60b30f3fcc6a630011eb772eaa4c68ad8ceb11 Mon Sep 17 00:00:00 2001 From: nitram509 Date: Wed, 30 Nov 2022 08:32:42 +0100 Subject: [PATCH] upgrade actions/setup-go@v3 and actions/checkout@v3, because Github warnings: "Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/setup-go@v2, actions/checkout@v2" remove former empty line to trigger Github Action --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f80aaee..876ff72 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Setup - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - name: Install chrome @@ -17,7 +17,7 @@ jobs: - name: Install wasmbrowsertest run: go install github.com/agnivade/wasmbrowsertest@latest - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test env: GOOS: js