Skip to content

Commit

Permalink
Update kind and rust versions (caulagi#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
caulagi committed May 22, 2023
1 parent 036e0f1 commit 7a38aeb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
Expand All @@ -37,14 +37,14 @@ jobs:
if: "!contains(github.event.head_commit.message, 'e2e skip') && !contains(github.event.head_commit.message, 'skip e2e')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-go@v1
with:
go-version: 1.19
- name: Install latest version of Kind
run: go install sigs.k8s.io/kind@v0.17.0
run: go install sigs.k8s.io/kind@v0.19.0
- run: PATH=$(go env GOPATH)/bin:$PATH kind version
- name: Create Kind cluster
run: PATH=$(go env GOPATH)/bin:$PATH kind create cluster --config kind-config.yaml
Expand Down
2 changes: 1 addition & 1 deletion frontendservice/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.67.0-slim-buster as build
FROM rust:1.69.0-slim-buster as build

ENV RUST_LOG frontend=info
ENV FORTUNE_SERVICE_HOSTNAME fortuneservice
Expand Down
2 changes: 1 addition & 1 deletion quotationservice/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.67.0-slim-buster as build
FROM rust:1.69.0-slim-buster as build

COPY . /code
WORKDIR /code
Expand Down

0 comments on commit 7a38aeb

Please sign in to comment.