Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Use embedded timezonde db in Go 1.15 as default #35

Merged
merged 1 commit into from
Oct 25, 2020
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.15
working_directory: /go/src/github.com/hiddeco/cronjobber
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.11
ARG GO_VERSION=1.15

FROM golang:${GO_VERSION}-alpine AS builder

Expand Down
1 change: 1 addition & 0 deletions cmd/cronjobber/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"k8s.io/klog"
"log"
"time"
_ "time/tzdata"

clientset "github.com/hiddeco/cronjobber/pkg/client/clientset/versioned"
informers "github.com/hiddeco/cronjobber/pkg/client/informers/externalversions"
Expand Down