setup java and adding proper custom root ca in truststore
Go to file
2024-09-16 00:53:40 +02:00
.gitignore Initial commit 2024-09-07 07:56:45 +00:00
action.yml feature: migrate to self host actions 2024-09-08 22:03:45 +02:00
LICENSE Initial commit 2024-09-07 07:56:45 +00:00
README.md docs: use version in usage example 2024-09-16 00:53:40 +02:00
renovate.json Add renovate.json 2024-09-08 21:14:19 +00:00

setup-java

GitHub action to setup and configure java.
The aim is to abstract public setup-java action
to allow homemade customization, for example adding root ca certificate to the java truststore

Usage example

name: Release

on:
  push:
    branches:
      - main

jobs:
  build:
    if: "contains(github.event.head_commit.message, vars.SKIP_CI_PREFIX) != true"

    runs-on: runner
    steps:
      - uses: https://antoine-roux.tk/projects/actions/checkout@v3.5.4

      - uses: https://antoine-roux.tk/projects/actions/setup-java@v1.0.0

      - uses: https://antoine-roux.tk/projects/actions/auto-changie@v1.0.1

      - name: Push changelog
        uses: stefanzweifel/git-auto-commit-action@v5
        with:
          commit_message: "${{ vars.SKIP_CI_PREFIX }} Push updated changelog"