From 3a846d97a0ff44c6fbf122f246cad1d54c7de2e1 Mon Sep 17 00:00:00 2001
From: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 31 Mar 2023 08:47:32 +0000
Subject: [PATCH] Update to Keycloak 21.0.2
---
.github/workflows/update-deps.yml | 20 ++++++++++++--------
1 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml
index 2636fdd..4bde49b 100644
--- a/.github/workflows/update-deps.yml
+++ b/.github/workflows/update-deps.yml
@@ -16,7 +16,7 @@
- id: java
name: Install Java and Maven
- uses: actions/setup-java@v2
+ uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
@@ -29,20 +29,23 @@
- id: vars
name: Get project variables
run: |
- echo -n "::set-output name=versionUpdated::"
- [ -f pom.xml.versionsBackup ] && echo 1 || echo 0
- echo -n "::set-output name=keycloakVersion::"
- mvn -q help:evaluate -Dexpression=keycloak.version -DforceStdout 2> /dev/null | grep -E '^[0-9a-zA-Z.-]+$'
+ if [ -f pom.xml.versionsBackup ]; then
+ echo "versionUpdated=1"
+ else
+ echo "versionUpdated=0"
+ fi >> $GITHUB_OUTPUT
+ echo -n "keycloakVersion=" >> $GITHUB_OUTPUT
+ mvn -q help:evaluate -Dexpression=keycloak.version -DforceStdout 2> /dev/null | grep -E '^[0-9a-zA-Z.-]+$' >> $GITHUB_OUTPUT
- id: check_branch
name: Check if branch exists
run: |
- echo -n "::set-output name=commit::"
+ echo -n "commit=" >> $GITHUB_OUTPUT
if [ '${{ steps.vars.outputs.versionUpdated }}' == '1' ]; then
git ls-remote origin 'feature/keycloak-update-${{ steps.vars.outputs.keycloakVersion }}'
else
git rev-parse HEAD
- fi
+ fi >> $GITHUB_OUTPUT
- id: reset_repo
name: Reset repository
@@ -59,6 +62,7 @@
-DremotePom='org.keycloak:keycloak-parent:${{ steps.vars.outputs.keycloakVersion }}' \
-DupdateDependencies=true -DupdatePropertyVersions=true
mvn versions:use-latest-versions -DallowMajorUpdates=false
+ mvn versions:set-property -Dproperty=project.build.outputTimestamp -DnewVersion=`date +%s`
- id: create_commit
name: Create commit
@@ -92,7 +96,7 @@
with:
github-token: ${{ env.GH_TOKEN }}
script: |
- github.pulls.create({
+ github.rest.pulls.create({
owner: context.repo.owner,
repo: context.repo.repo,
head: 'feature/keycloak-update-${{ steps.vars.outputs.keycloakVersion }}',
--
Gitblit v1.10.0