build: update container and package dependencies

- Change the container from `golang:1.19-alpine` to `golang:1.21-alpine`
- Add `build-base`, `zlib-dev`, and `ucl-dev` to the list of packages to be installed

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu
2023-10-25 15:58:58 +08:00
parent 8239f0f8b1
commit 3c91807166
+2 -2
View File
@@ -27,14 +27,14 @@ jobs:
testing:
runs-on: ubuntu-latest
container: golang:1.19-alpine
container: golang:1.21-alpine
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: setup related tools
run: |
apk add make
apk add make build-base zlib-dev ucl-dev
- name: testing
run: |