From 81832a26bc42a82fc7232ff55d11a5f089beb88b Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 15 Jan 2023 08:46:18 -0500 Subject: [PATCH] bump github actions https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 321957fe..08e751f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,9 +15,9 @@ jobs: runs-on: "ubuntu-20.04" steps: - name: "checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "setup go" - uses: "actions/setup-go@v2" + uses: "actions/setup-go@v3" with: go-version: "1.19" - name: "install python3-pytest"