File tree Expand file tree Collapse file tree 4 files changed +37
-4
lines changed
Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Original file line number Diff line number Diff line change 2020 export SSH_AUTH_SOCK=/tmp/ssh_agent.sock
2121 touch $SSH_AUTH_SOCK
2222
23+ touch ${HOME}/.gitconfig
24+
2325 set -x
2426 set +e
2527 source commodore_command.sh
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- COMMODORE_VERSION=" v1.3.2"
3+ # renovate: datasource=docker depName=projectsyn/commodore
4+ COMMODORE_VERSION=" v1.29.0"
45
56commodore () {
67 LIEUTENANT_URL=$( curl http://localhost:4040/api/tunnels --silent | jq -r ' .["tunnels"][0]["public_url"]' )
Original file line number Diff line number Diff line change @@ -12,9 +12,12 @@ There are many https://github.com/topics/commodore-component[Commodore Component
1212
1313This tutorial has been prepared with the following versions of Syn components in mind:
1414
15- * Commodore: 1.3.2
16- * Lieutenant API: 0.9.1
17- * Lieutenant Operator: 1.3.0
15+ // renovate: datasource=docker depName=projectsyn/commodore
16+ * Commodore: 1.29.0
17+ // renovate: datasource=docker depName=projectsyn/lieutenant-api
18+ * Lieutenant API: 0.12.2
19+ // renovate: datasource=docker depName=projectsyn/lieutenant-operator
20+ * Lieutenant Operator: 1.11.11
1821
1922Project Syn is moving fast, and we will update this tutorial accordingly as new features and capabilities are made available by the development team.
2023
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : [
3+ " config:recommended"
4+ ],
5+ "rebaseWhen" : " conflicted" ,
6+ "labels" : [" renovate" ],
7+ "packageRules" : [
8+ {
9+ "matchDepNames" : " /.*/" ,
10+ "groupName" : " dependencies"
11+ }
12+ ],
13+ "customManagers" : [
14+ {
15+ "customType" : " regex" ,
16+ "managerFilePatterns" : [
17+ " /.*\\ .sh$/" ,
18+ " /.*\\ .adoc$/"
19+ ],
20+ "matchStrings" : [
21+ " renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\ s.*?_VERSION=\" ?(?<currentValue>[^\" ]*)[\" |\\ s]" ,
22+ " renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\ s.*?: (?<currentValue>.*)\\ s"
23+ ],
24+ "versioningTemplate" : " {{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
25+ }
26+ ]
27+ }
You can’t perform that action at this time.
0 commit comments