From 97fb07b957060de362201f146d799e18a48783d9 Mon Sep 17 00:00:00 2001 From: Mattias Wadman Date: Sun, 3 Jan 2021 18:47:11 +0100 Subject: [PATCH] Add bump go get and links --- Bumpfile | 1 + Dockerfile | 2 ++ go.mod | 6 +++++- go.sum | 4 ++-- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Bumpfile b/Bumpfile index 9414382..004974a 100644 --- a/Bumpfile +++ b/Bumpfile @@ -1 +1,2 @@ Dockerfile +go.mod diff --git a/Dockerfile b/Dockerfile index 8afd0e6..a121889 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # bump: golang /GOLANG_VERSION=([\d.]+)/ docker:golang|^1 +# bump: golang link "Release notes" https://golang.org/doc/devel/release.html ARG GOLANG_VERSION=1.15.6 # bump: youtube-dl /YDL_VERSION=([\d.]+)/ https://github.com/ytdl-org/youtube-dl.git|/^\d/|sort +# bump: youtube-dl link "Release notes" https://github.com/ytdl-org/youtube-dl/releases/tag/$LATEST ARG YDL_VERSION=2021.01.03 FROM golang:$GOLANG_VERSION diff --git a/go.mod b/go.mod index 4686561..96a0730 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,10 @@ module github.com/wader/goutubedl go 1.12 require ( + // bump: leaktest /github.com\/fortytw2\/leaktest v(.*)/ git:https://github.com/fortytw2/leaktest.git|^1 + // bump: leaktest command go get github.com/fortytw2/leaktest@v$LATEST && go mod tidy github.com/fortytw2/leaktest v1.3.0 - github.com/wader/osleaktest v0.0.0-20190723190525-c53af4cfc4a3 + // bump: osleaktest /github.com\/wader\/osleaktest .*-(.*)/ gitrefs:https://github.com/wader/osleaktest.git|re:%refs/heads/master%|@commit|/^(.{12})/ + // bump: osleaktest command go get github.com/wader/osleaktest && go mod tidy + github.com/wader/osleaktest v0.0.0-20191111175233-f643b0fed071 ) diff --git a/go.sum b/go.sum index e34cdbe..f527364 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= -github.com/wader/osleaktest v0.0.0-20190723190525-c53af4cfc4a3 h1:4WTMRnBIat+s9D1PIpzh2UUZrEjxzRjJI85IdWePjCI= -github.com/wader/osleaktest v0.0.0-20190723190525-c53af4cfc4a3/go.mod h1:XD6emOFPHVzb0+qQpiNOdPL2XZ0SRUM0N5JHuq6OmXo= +github.com/wader/osleaktest v0.0.0-20191111175233-f643b0fed071 h1:QkrG4Zr5OVFuC9aaMPmFI0ibfhBZlAgtzDYWfu7tqQk= +github.com/wader/osleaktest v0.0.0-20191111175233-f643b0fed071/go.mod h1:XD6emOFPHVzb0+qQpiNOdPL2XZ0SRUM0N5JHuq6OmXo=