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 +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 870
870
"datasourceTemplate" : " github-releases" ,
871
871
"extractVersionTemplate" : " ^v(?<version>.+?)$"
872
872
},
873
+ {
874
+ "fileMatch" : [
875
+ " ^tools/ddosify/manifest.yaml$"
876
+ ],
877
+ "matchStrings" : [
878
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
879
+ ],
880
+ "depNameTemplate" : " ddosify/ddosify" ,
881
+ "datasourceTemplate" : " github-releases" ,
882
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
883
+ },
873
884
{
874
885
"fileMatch" : [
875
886
" ^tools/dependency-check/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
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6
+ ARG name
7
+ ARG version
8
+ RUN <<EOF
9
+ curl --silent --location --fail "https://github.com/ddosify/ddosify/releases/download/v${version}/ddosify_${version}_linux_${alt_arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11
+ ddosify
12
+ EOF
Original file line number Diff line number Diff line change
1
+ name : ddosify
2
+ version : " 0.10.0"
3
+ check : ${binary} --version | head -1 | tr -s ' ' | cut -d' ' -f2
4
+ tags :
5
+ - category/security
6
+ - type/cli
7
+ - lang/go
8
+ homepage : https://github.com/ddosify/ddosify
9
+ description : High-performance load testing tool, written in Golang. For distributed and Geo-targeted load testing Ddosify Cloud - https//ddosify.com 🚀
10
+ renovate :
11
+ datasource : github-releases
12
+ package : ddosify/ddosify
13
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments