Skip to content

Commit

Permalink
workflows: remove go1.16/1.17, add go1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfc committed Feb 10, 2024
1 parent cbbd0e9 commit f23b076
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 120 deletions.
110 changes: 0 additions & 110 deletions .github/workflows/go117.yml

This file was deleted.

20 changes: 10 additions & 10 deletions .github/workflows/go116.yml → .github/workflows/go122.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Go1.16
name: Go1.22

on:
push:
Expand All @@ -9,14 +9,14 @@ on:
jobs:

macos:
name: Test Go1.16 for macOS
name: Test Go1.22 for macOS
runs-on: macos-latest
steps:

- name: Set up Go 1.16
- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.22.x

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -38,14 +38,14 @@ jobs:
run: GOARCH=amd64 go run ./cmd/igoptest

linux:
name: Test Go1.16 for Linux
name: Test Go1.22 for Linux
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.16
- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.22.x

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -67,14 +67,14 @@ jobs:
run: GOARCH=amd64 go run ./cmd/igoptest

windows:
name: Test Go1.16 for Windows
name: Test Go1.22 for Windows
runs-on: windows-latest
steps:

- name: Set up Go 1.16
- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.22.x

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down

0 comments on commit f23b076

Please sign in to comment.