Update Bundled OpenJDK #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Bundled OpenJDK | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/update-openjdk.yml | |
schedule: | |
- cron: '0 12 * * 1-5' | |
concurrency: | |
group: update-openjdk-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
update-openjdk: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- id: latest | |
uses: pozetroninc/[email protected] | |
with: | |
repository: adoptium/temurin11-binaries | |
excludes: prerelease, draft | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update JDK_VERSION in pkg/signalfx-agent/bundle/Dockerfile | |
run: | | |
version=$( echo "${{ steps.latest.outputs.release }}" | sed 's|^jdk-\(.*\)|\1|' | tr '+' '_' ) | |
if [[ -n "$version" ]]; then | |
echo "$version" | |
sed -i "s|^ARG JDK_VERSION=.*|ARG JDK_VERSION=${version}|" pkg/signalfx-agent/bundle/Dockerfile | |
git diff | |
fi | |
- name: Create Pull Request | |
if: success() && (github.event_name == 'schedule') | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
title: Update Bundled OpenJDK to latest | |
commit-message: Update Bundled OpenJDK to latest | |
base: main | |
draft: true | |
branch: create-pull-request/update-openjdk |