diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index a0de5462..052e3adf 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -28,7 +28,7 @@ jobs: test: name: Run Go unit tests and check package coverage runs-on: ubuntu-latest - container: node:10.18-jessie + container: node:20 services: # Label used to access the service container redis: @@ -43,7 +43,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run unit tests and check package coverage uses: dell/common-github-actions/go-code-tester@main with: @@ -80,10 +80,10 @@ jobs: name: Image Scanner runs-on: ubuntu-latest steps: - - name: Set up Go 1.21+ + - name: Set up Go 1.22+ uses: actions/setup-go@v5 with: - go-version: ^1.21 + go-version: ^1.22 id: go - name: Checkout the code uses: actions/checkout@v4 diff --git a/go.mod b/go.mod index 101b7f60..feca12f3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module karavi-authorization -go 1.21 +go 1.22 require ( github.com/alicebob/miniredis/v2 v2.31.0