Skip to content

Commit d1bc6b4

Browse files
authored
Merge pull request #48 from projectsyn/modulesync-0c81c8e
[ModuleSync] Update from projectsyn/modulesync-control@0c81c8e
2 parents 0585b1e + f63ac13 commit d1bc6b4

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
dist:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
with:
1313
fetch-depth: "0"
1414
- name: Build changelog from PRs with labels

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
- lint_yaml
1818
- lint_adoc
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: Run ${{ matrix.command }}
2222
run: make ${{ matrix.command }}
2323
editorconfig:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- uses: snow-actions/eclint@v1.0.1
2828
with:
2929
args: 'check'
@@ -33,7 +33,7 @@ jobs:
3333
run:
3434
working-directory: ${{ env.COMPONENT_NAME }}
3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
with:
3838
path: ${{ env.COMPONENT_NAME }}
3939
- name: Compile component
@@ -44,7 +44,7 @@ jobs:
4444
run:
4545
working-directory: ${{ env.COMPONENT_NAME }}
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v3
4848
with:
4949
path: ${{ env.COMPONENT_NAME }}
5050
- name: Golden diff

Makefile.vars.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ YAMLLINT_DOCKER ?= $(DOCKER_CMD) $(DOCKER_ARGS) $(root_volume) $(YAMLLINT_IMAGE)
2828
VALE_CMD ?= $(DOCKER_CMD) $(DOCKER_ARGS) $(root_volume) --volume "$${PWD}"/docs/modules:/pages docker.io/vshn/vale:2.1.1
2929
VALE_ARGS ?= --minAlertLevel=error --config=/pages/ROOT/pages/.vale.ini /pages
3030

31-
ANTORA_PREVIEW_CMD ?= $(DOCKER_CMD) run --rm --publish 35729:35729 --publish 2020:2020 --volume "${PWD}/.git":/preview/antora/.git --volume "${PWD}/docs":/preview/antora/docs docker.io/vshn/antora-preview:3.0.1.0 --style=syn --antora=docs
31+
ANTORA_PREVIEW_CMD ?= $(DOCKER_CMD) run --rm --publish 35729:35729 --publish 2020:2020 --volume "${PWD}/.git":/preview/antora/.git --volume "${PWD}/docs":/preview/antora/docs docker.io/vshn/antora-preview:3.0.1.1 --style=syn --antora=docs
3232

3333
COMMODORE_CMD ?= $(DOCKER_CMD) $(DOCKER_ARGS) $(root_volume) docker.io/projectsyn/commodore:latest component compile . $(commodore_args)
3434
JB_CMD ?= $(DOCKER_CMD) $(DOCKER_ARGS) --entrypoint /usr/local/bin/jb docker.io/projectsyn/commodore:latest install

renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
":gitSignOff",
55
":disableDependencyDashboard"
66
],
7+
"postUpgradeTasks": {
8+
"commands": [
9+
"make gen-golden"
10+
],
11+
"fileFilters": [ "tests/golden/**" ],
12+
"executionMode": "update"
13+
},
14+
"suppressNotifications": [ "artifactErrors" ],
715
"labels": [
816
"dependency"
917
]

0 commit comments

Comments
 (0)