latest-weekly #100377
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: latest-weekly | |
on: | |
schedule: | |
- cron: "*/15 * * * *" | |
workflow_dispatch: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Jenkins Weekly version | |
id: update | |
uses: jenkins-infra/jenkins-version@0.6.0 | |
with: | |
version-identifier: latest | |
- name: Process Version | |
id: process | |
run: | | |
SUFFIX=jdk17 | |
FULL_VERSION=jenkins/jenkins:${{ steps.update.outputs.jenkins_version }}-${SUFFIX} | |
echo $FULL_VERSION | |
sed -i 's|FROM .*|FROM '"${FULL_VERSION}"'|' Dockerfile | |
- name: Calculate Diff | |
id: diff | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
else | |
echo "changed=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Update plugins | |
if: ${{ steps.diff.outputs.changed == 'true' }} | |
id: update-plugins | |
run: | | |
set +x | |
instances="infra weekly" | |
for instance in $instances; do | |
# Keep a copy of the original plugins file | |
cp "plugins-${instance}.ci.jenkins.io.txt" original-plugins.txt | |
# Update them | |
./bin/update-plugins.sh "plugins-${instance}.ci.jenkins.io.txt" | |
# Store comparison between original and updated plugins files | |
diff --unified=0 original-plugins.txt "plugins-${instance}.ci.jenkins.io.txt" > diff.txt || true | |
if [ -s diff.txt ]; then | |
pluginsdiff=$(cat diff.txt | tail --lines +3 | grep -v '@') | |
newlines=$(echo "${pluginsdiff}" | grep '+') | |
links='' | |
while read -r line | |
do | |
pluginName=${line%:*} | |
pluginVersion=${line#*:} | |
links+="[${pluginName//+}:${pluginVersion}](https://plugins.jenkins.io/${pluginName//+}/releases/#version_${pluginVersion})<br>" | |
done <<< "$newlines" | |
# Cleanup | |
rm original-plugins.txt diff.txt | |
delimiter="$(openssl rand -hex 8)" | |
# shellcheck disable=SC2129 | |
echo "diff-${instance}<<${delimiter}" >> "${GITHUB_OUTPUT}" | |
echo "${pluginsdiff}" >> "$GITHUB_OUTPUT" | |
echo "${delimiter}" >> "${GITHUB_OUTPUT}" | |
delimiter="$(openssl rand -hex 8)" | |
echo "links-${instance}<<${delimiter}" >> "${GITHUB_OUTPUT}" | |
echo "${links}" >> "$GITHUB_OUTPUT" | |
echo "${delimiter}" >> "${GITHUB_OUTPUT}" | |
else | |
echo "diff-${instance}=''" >> "${GITHUB_OUTPUT}" | |
echo "links-${instance}=''" >> "${GITHUB_OUTPUT}" | |
fi | |
done | |
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
id: generate-token | |
if: ${{ steps.diff.outputs.changed == 'true' }} | |
with: | |
app_id: ${{ secrets.JENKINS_ADMIN_APP_ID }} | |
private_key: ${{ secrets.JENKINS_ADMIN_APP_PRIVKEY }} | |
- name: Create Pull Request | |
id: cpr | |
if: ${{ steps.diff.outputs.changed == 'true' }} | |
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0 | |
with: | |
commit-message: 'feat(deps): bump jenkins weekly to ${{ steps.update.outputs.jenkins_version }}' | |
signoff: false | |
title: 'feat(deps): bump jenkins weekly to ${{ steps.update.outputs.jenkins_version }}' | |
branch: latest-weekly | |
token: ${{ steps.generate-token.outputs.token }} | |
body: | | |
## infra.ci.jenkins.io plugins | |
### Change(s): | |
```diff | |
${{ steps.update-plugins.outputs.diff-infra }} | |
``` | |
### Link(s): | |
${{ steps.update-plugins.outputs.links-infra }} | |
## weekly.ci.jenkins.io plugins | |
### Change(s): | |
```diff | |
${{ steps.update-plugins.outputs.diff-weekly }} | |
``` | |
### Link(s): | |
${{ steps.update-plugins.outputs.links-weekly }} |