Skip to content

chore(deps): update eclipse-temurin docker tag to v25.0.2_10-jdk-alpine #232

chore(deps): update eclipse-temurin docker tag to v25.0.2_10-jdk-alpine

chore(deps): update eclipse-temurin docker tag to v25.0.2_10-jdk-alpine #232

Workflow file for this run

name: Pull Request Close
on:
pull_request:
types:
- closed
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
permissions: {}
jobs:
vars:
name: Variables
runs-on: ubuntu-24.04
outputs:
semver: ${{ steps.semver.outputs.version }}
tag: ${{ steps.semver.outputs.tag }}
steps:
# steps.semver.outputs.tag => needs.vars.outputs.semver
- uses: actions/checkout@v6
with:
ref: refs/heads/${{ github.event.repository.default_branch }}
- name: Conventional Changelog Update
uses: TriPSs/conventional-changelog-action@84dadaf2c367cb52af02737cd9c7e888807219e7 # v6.2.0
id: semver
with:
git-branch: refs/heads/${{ github.head_ref }}
git-push: "false"
skip-commit: "true"
skip-on-empty: "false"
skip-version-file: "true"
- run: |
echo "semver=${{ steps.semver.outputs.version }}"
echo "tag=${{ steps.semver.outputs.tag }}"
cleanup-jars:
name: Cleanup Dev Images
runs-on: ubuntu-24.04
needs: [vars]
permissions:
packages: write
env:
NAME: ${{ github.event.repository.name }}
steps:
- name: Checkout branch
uses: actions/checkout@v6
- name: Conventional Changelog Update
continue-on-error: true
uses: TriPSs/conventional-changelog-action@84dadaf2c367cb52af02737cd9c7e888807219e7 # v6
id: changelog
with:
github-token: ${{ github.token }}
output-file: "CHANGELOG.md"
skip-version-file: "true"
skip-commit: "true"
git-push: "false"
skip-on-empty: "false"