From 5ce886cd6ebb4035bd660ebb81c4213e2eb81451 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 21 Feb 2023 09:12:55 +0000
Subject: [PATCH] GitHub Actions: update actions/checkout from v2 to v3 in Test jobs
---
.github/workflows/update-deps.yml | 27 ++++++++++++++++-----------
1 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml
index dd8e29f..4bde49b 100644
--- a/.github/workflows/update-deps.yml
+++ b/.github/workflows/update-deps.yml
@@ -12,13 +12,14 @@
steps:
- id: checkout
name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- id: java
name: Install Java and Maven
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v3
with:
- java-version: 8
+ distribution: zulu
+ java-version: 11
- id: update_keycloak
name: Update Keycloak
@@ -28,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
@@ -58,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
@@ -87,11 +92,11 @@
- id: create_pull_request_default_token
name: Create pull request
if: steps.check_branch.outputs.commit == ''
- uses: actions/github-script@0.9.0
+ uses: actions/github-script@v6
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.9.1