Skip to content

Commit 2477c14

Browse files
committed
chore(do not merge): demo of template files fix
1 parent 22cddb8 commit 2477c14

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/renovate_config_check.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
renovate_bot_config_validation:
10-
runs-on: ubuntu-24.04
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
- name: Checkout code
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '22'
19+
node-version: '20'
2020

2121
- name: Install Renovate and Config Validator
2222
run: |

.github/workflows/samples.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/setup-java@v4
2525
with:
2626
distribution: temurin
27-
java-version: 11
27+
java-version: 8
2828
- name: Run checkstyle
2929
run: mvn -P lint --quiet --batch-mode checkstyle:check
3030
working-directory: samples/snippets

.github/workflows/update_generation_config.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121

2222
jobs:
2323
update-generation-config:
24-
runs-on: ubuntu-24.04
24+
runs-on: ubuntu-22.04
2525
env:
2626
# the branch into which the pull request is merged
2727
base_branch: main
@@ -37,7 +37,8 @@ jobs:
3737
[ -z "$(git config user.email)" ] && git config --global user.email "[email protected]"
3838
[ -z "$(git config user.name)" ] && git config --global user.name "cloud-java-bot"
3939
bash .github/scripts/update_generation_config.sh \
40-
--base_branch "${base_branch}"\
40+
--base_branch "${base_branch}" \
4141
--repo ${{ github.repository }}
4242
env:
4343
GH_TOKEN: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
44+

0 commit comments

Comments
 (0)