From 1b902cd1e39c3ed6f8b03be5caafc5de74d800a9 Mon Sep 17 00:00:00 2001 From: renovate Date: Thu, 4 Aug 2022 04:03:58 +0000 Subject: [PATCH] chore(deps): update dependency golang (#13) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | docker | minor | `1.18` -> `1.19` | | golang | stage | minor | `1.18.5-alpine3.16` -> `1.19.0-alpine3.16` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: Renovate Reviewed-on: https://gitea.dwysokinski.me/Kichiyaki/notificationarr/pulls/13 Co-authored-by: renovate Co-committed-by: renovate --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index aac3fe8..4cb056a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,7 +5,7 @@ name: test steps: - name: test - image: golang:1.18 + image: golang:1.19 commands: - go test -race -coverprofile=coverage.txt -covermode=atomic ./... @@ -23,7 +23,7 @@ name: check-go-mod steps: - name: check go.mod - image: golang:1.18 + image: golang:1.19 commands: - go mod tidy - git diff --exit-code go.mod diff --git a/Dockerfile b/Dockerfile index 49f51df..fa96a40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.18.5-alpine3.16 as builder +FROM golang:1.19.0-alpine3.16 as builder WORKDIR /notificationarr