From 1f0ba943edf3d0b41e46ef4d3e1bdcea0f4ce6dd Mon Sep 17 00:00:00 2001 From: bartoszmajsak Date: Mon, 4 Dec 2023 17:39:35 +0100 Subject: [PATCH] chore(deps): bumps go to 1.20 --- .github/workflows/build.yaml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/push-image.yml | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3b4ac6b..4a773af 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -8,5 +8,5 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: - go-version: 1.19.x + go-version: '1.20' - run: make \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d7ef656..d46db4a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go env uses: actions/setup-go@v4 with: - go-version: 1.19 + go-version: '1.20' - uses: actions/checkout@v4 with: fetch-depth: 1 diff --git a/.github/workflows/push-image.yml b/.github/workflows/push-image.yml index 70d44f3..d188513 100644 --- a/.github/workflows/push-image.yml +++ b/.github/workflows/push-image.yml @@ -20,5 +20,5 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: - go-version: 1.19.x + go-version: '1.20' - run: make image \ No newline at end of file diff --git a/go.mod b/go.mod index 1922f10..1ddfc54 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/opendatahub-io/odh-project-controller -go 1.19 +go 1.20 require ( github.com/go-logr/logr v1.3.0