Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Refresh jdk 22 from Upstream #275

Refresh jdk 22 from Upstream

Refresh jdk 22 from Upstream #275

Workflow file for this run

name: "Refresh jdk 22 from Upstream"
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
env:
UPSTREAM_REMOTE: https://github.com/openjdk/jdk22u
LOCAL_BRANCH: develop
jobs:
refresh-jdk:
runs-on: ubuntu-latest
name: "Update Corretto-22"
if: github.repository_owner == 'corretto'
steps:
- name: "Checkout code"
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ env.LOCAL_BRANCH }}
- name: "Configure the user"
run: |
git config user.email "[email protected]"
git config user.name "corretto-github-robot"
- name: "Merge openjdk/jdk:master to the corretto-22:develop"
run: |
git fetch $UPSTREAM_REMOTE master || exit 1
git merge -m "Merge upstream-jdk" FETCH_HEAD
- name: "Update Corretto version"
shell: bash
run: bash ./.github/scripts/update-version.sh $UPSTREAM_REMOTE
- name: "Push to the corretto-22"
run: git push origin $LOCAL_BRANCH