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

ci/go: update os machine to run ubuntu-20.04 and go update to 1.17.7 #426

Merged
merged 3 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:

jobs:
release:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: checkout
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:

jobs:
unit-test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: checkout
Expand All @@ -41,13 +41,13 @@ jobs:
- name: Go setup
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8 # v2.1.3
with:
go-version: '1.17.2'
go-version: '1.17.7'

- name: Run unit tests
run: make all

push-images:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: unit-test

steps:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
DOCKER_REPO=${DOCKER_ORG}/do-csi-plugin-dev make publish

e2e-test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: push-images
strategy:
matrix:
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Go setup
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8 # v2.1.3
with:
go-version: '1.17.2'
go-version: '1.17.7'

- name: Install kustomize
env:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
TIMEOUT=60m make test-e2e E2E_ARGS="-ginkgo-nodes ${NUM_GINKGO_NODES} -driver-image ${DOCKER_ORG}/do-csi-plugin-dev:${TAG} -runner-image ${DOCKER_ORG}/k8s-e2e-test-runner:${RUNNER_IMAGE_TAG_PREFIX}latest -name-suffix ${NAME_SUFFIX} -retain ${{ matrix.kube-release }}"

tag-new-master-image:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/master'
needs: e2e-test

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

NAME=do-csi-plugin
OS ?= linux
GO_VERSION := 1.15.5
GO_VERSION := 1.17.7
ifeq ($(strip $(shell git status --porcelain 2>/dev/null)),)
GIT_TREE_STATE=clean
else
Expand Down