From 52bcc0d31ef2a0c4a5453d342ce194e349f7cc1a Mon Sep 17 00:00:00 2001 From: Chris Morrow Date: Fri, 29 Sep 2023 16:31:39 +0000 Subject: [PATCH] Issue 40: Update python and golang versions. The python action is reporting an error: Error: Version 3.6 with arch x64 not found golang version 20 is more modern, verison 16 is old-n-busted (not quite!) --- .github/workflows/python-client.yml | 2 +- .github/workflows/rv.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-client.yml b/.github/workflows/python-client.yml index 796e679..0556afd 100644 --- a/.github/workflows/python-client.yml +++ b/.github/workflows/python-client.yml @@ -29,7 +29,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v2 with: - python-version: "3.6" + python-version: "3.10" - name: Install pinned dependencies run: | diff --git a/.github/workflows/rv.yml b/.github/workflows/rv.yml index 026941d..428761b 100644 --- a/.github/workflows/rv.yml +++ b/.github/workflows/rv.yml @@ -18,10 +18,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.16 + - name: Set up Go 1.20 uses: actions/setup-go@v1 with: - go-version: 1.16 + go-version: '1.20' id: go - name: Check out code into the Go module directory