diff options
author | Michael Steinert <[email protected]> | 2022-08-03 16:07:21 -0500 |
---|---|---|
committer | Michael Steinert <[email protected]> | 2022-08-03 16:07:21 -0500 |
commit | f401703daf29acc07acb7d078755f4eb0bcd6e8c (patch) | |
tree | 0adb61b7278c5c51466b08a8c7b6c973978d2cdb | |
parent | 39406aafe4e576912cc7c6abde98c5bddd5a0a58 (diff) |
Update CI build matrix
-rw-r--r-- | .github/workflows/test.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 77c9f2f..86b1d0e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,12 +4,12 @@ jobs: test: strategy: matrix: - go-version: [1.16.x, 1.17.x] + go-version: [1.18.x, 1.19.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - name: Install PAM @@ -17,6 +17,6 @@ jobs: - name: Add a test user run: sudo useradd -d /tmp/test -p '$1$Qd8H95T5$RYSZQeoFbEB.gS19zS99A0' -s /bin/false test - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test run: sudo go test -v ./... |