Skip to content

Commit

Permalink
chore: update container and steps for Kubernetes deployment
Browse files Browse the repository at this point in the history
- Change the container from `golang:1.20-alpine` to `golang:1.21-alpine`
- Replace the step "setup sshd server" with "Create k8s Kind Cluster" using `helm/kind-action@v1.8.0`
- Add a new step "install package"

Signed-off-by: appleboy <appleboy.tw@gmail.com>
  • Loading branch information
appleboy committed Jan 28, 2024
1 parent 10b1c10 commit 0c9f588
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@ jobs:

testing:
runs-on: ubuntu-latest
container: golang:1.20-alpine
container: golang:1.21-alpine
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: setup sshd server
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.8.0

- name: install package
run: |
apk add make
Expand Down

0 comments on commit 0c9f588

Please sign in to comment.