diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-18 11:58:40 +0100 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-03-18 12:52:04 +0100 |
| commit | f94e6471268c12b7b5c7fd1c8b8800dac3848d6c (patch) | |
| tree | b672ff5bf0f745b4420f6ff6bda6f628aa6c121c /.github/workflows | |
| parent | 80c068cd27c4a186d2701c47fa7ce8a2c79ca502 (diff) | |
Workflows Test: Bump Go to 1.22
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0b48c27..89b2b95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: ^1.17 + go-version: ^1.22 - uses: actions/checkout@v3 - name: Run golangci-lint uses: golangci/golangci-lint-action@v3 @@ -61,12 +61,9 @@ jobs: # Update /etc/hosts to point to our server echo "127.0.0.1 ${WEB_FQDN}" | sudo tee -a /etc/hosts - - name: Install Go - run: | - wget https://go.dev/dl/go1.19.4.linux-amd64.tar.gz -q -O go.tar.gz - echo "c9c08f783325c4cf840a94333159cc937f05f75d36a8b307951d5bd959cf2ab8 go.tar.gz" | sha256sum --check - sudo rm -rf /usr/local/go - sudo tar -C /usr/local -xzf go.tar.gz + - uses: actions/setup-go@v3 + with: + go-version: ^1.22 - name: Selenium dependencies run: | sudo apt-get -y update @@ -87,7 +84,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: ^1.17 + go-version: ^1.22 - run: make - uses: actions/upload-artifact@v3 with: |
