mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 23:12:06 -03:30
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](11bd71901b...08c6903cd8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
name: Quarkus Next
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
concurrency:
|
|
# Only cancel jobs for PR updates
|
|
group: quarkus-next-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-quarkus-next-branch:
|
|
name: Update quarkus-next branch
|
|
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write # Required to push changes to the repository
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
ref: main
|
|
fetch-depth: 0
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --global user.name "github-actions[bot]"
|
|
|
|
- name: Cherry-pick additional commits in quarkus-next
|
|
run: |
|
|
${GITHUB_WORKSPACE}/.github/scripts/prepare-quarkus-next.sh
|
|
|
|
- name: Push changes
|
|
run: |
|
|
git push -f origin HEAD:quarkus-next
|
|
|
|
run-matrix-with-quarkus-next:
|
|
name: Run workflow matrix with the quarkus-next branch
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write # Required to trigger workflows using gh
|
|
needs:
|
|
- update-quarkus-next-branch
|
|
|
|
strategy:
|
|
matrix:
|
|
workflow:
|
|
- ci.yml
|
|
- operator-ci.yml
|
|
|
|
steps:
|
|
- name: Run workflow with the nightly Quarkus release
|
|
run: gh workflow run -R ${{ github.repository }} ${{ matrix.workflow }} -r quarkus-next
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|