| | |
| | | on: |
| | | schedule: |
| | | - cron: '41 8 * * *' |
| | | workflow_dispatch: |
| | | |
| | | name: Update dependencies |
| | | |
| | |
| | | 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@v2 |
| | | with: |
| | | java-version: 8 |
| | | distribution: zulu |
| | | java-version: 11 |
| | | |
| | | - id: update_keycloak |
| | | name: Update Keycloak |
| | |
| | | -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 |
| | |
| | | - 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 }}', |