Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert workflow go to stable #3040

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
${{ runner.os }}-go-
- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'
- name: Run linters
run: make lint

Expand All @@ -43,7 +43,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'

- name: Run API unit tests
run: make -C api test
Expand All @@ -65,7 +65,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'

- name: Run Controllers tests
run: make -C controllers test
Expand All @@ -87,7 +87,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'

- name: Run job-task-runner tests
run: make -C job-task-runner test
Expand All @@ -109,7 +109,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'

- name: Run kpack-image-builder tests
run: make -C kpack-image-builder test
Expand All @@ -131,7 +131,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'

- name: Run statefulset-runner tests
run: make -C statefulset-runner test
Expand All @@ -153,7 +153,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.20.7'
go-version: 'stable'

- name: Run tools tests
run: make -C tools test
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.20.12 as builder
FROM golang:1.21.5 as builder

ARG version=dev

Expand Down
2 changes: 1 addition & 1 deletion api/remote-debug/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.20.12 as builder
FROM golang:1.21.5 as builder

ARG version=dev

Expand Down
2 changes: 1 addition & 1 deletion controllers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.20.12 as builder
FROM golang:1.21.5 as builder

ARG version=dev

Expand Down
2 changes: 1 addition & 1 deletion controllers/remote-debug/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.20.12 as builder
FROM golang:1.21.5 as builder

ARG version=dev

Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module code.cloudfoundry.org/korifi

go 1.20
go 1.21

toolchain go1.21.5

require (
code.cloudfoundry.org/bytefmt v0.0.0-20211005130812-5bb3c17173e5
Expand Down
42 changes: 42 additions & 0 deletions go.sum

Large diffs are not rendered by default.

Loading