summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Steinert <[email protected]>2023-09-20 19:22:43 -0500
committerMichael Steinert <[email protected]>2023-09-20 19:22:43 -0500
commit736c9ebebe2794ce6169170b00c1391b5b66a051 (patch)
tree5c5b5e908b447822153a21ac81dc92de482605fe
parente0a2c7ba60b544680335a3c1080c49eb2d2b7d3c (diff)
Update CI configuration
-rw-r--r--.github/workflows/test.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 0dd0b77..23b3b64 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -4,12 +4,12 @@ jobs:
test:
strategy:
matrix:
- go-version: [1.19.x, 1.20.x]
+ go-version: [1.20.x, 1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
- uses: actions/setup-go@v3
+ uses: actions/setup-go@v4
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@v3
+ uses: actions/checkout@v4
- name: Test
run: sudo go test -v ./...