This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1411
1411
"datasourceTemplate" : " github-releases" ,
1412
1412
"extractVersionTemplate" : " ^v(?<version>.+?)$"
1413
1413
},
1414
+ {
1415
+ "fileMatch" : [
1416
+ " ^tools/go/manifest.yaml$"
1417
+ ],
1418
+ "matchStrings" : [
1419
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
1420
+ ],
1421
+ "depNameTemplate" : " golang/go" ,
1422
+ "datasourceTemplate" : " github-tags" ,
1423
+ "extractVersionTemplate" : " ^go(?<version>.+?)$"
1424
+ },
1414
1425
{
1415
1426
"fileMatch" : [
1416
1427
" ^tools/gocryptfs/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.4.3
2
+
3
+ ARG ref=main
4
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ RUN <<EOF
10
+ mkdir -p "${prefix}/opt/go"
11
+ curl --silent --location "https://go.dev/dl/go${version}.linux-${alt_arch}.tar.gz" \
12
+ | tar --extract --gzip --directory="${prefix}/opt/go" --strip-components=1 --no-same-owner
13
+ ln -sf "/opt/go/bin/go" "${prefix}${target}/bin/go"
14
+ ln -sf "/opt/go/bin/gofmt" "${prefix}${target}/bin/gofmt"
15
+ EOF
Original file line number Diff line number Diff line change
1
+ name : go
2
+ version : 1.19.2
3
+ check : ${binary} version | cut -d' ' -f3 | tr -d go
4
+ tags :
5
+ - type/cli
6
+ - category/development
7
+ homepage : https://github.com/golang/go
8
+ description : Go programming language
9
+ renovate :
10
+ datasource : github-tags
11
+ package : golang/go
12
+ extractVersion : ^go(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments