From 6085fd7ec65aaa4a8ded808ff1316cf6b019df98 Mon Sep 17 00:00:00 2001 From: Andrea Como Date: Sun, 30 Oct 2022 15:05:06 +0100 Subject: [PATCH] Readme improvements --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f1fb51d..7b2368b 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,11 @@ This *GitHub Action* extracts GAV from `pom.xml`, i.e.: Why should I need this? For example, to **name** and **tag** a Docker image built upon your artifact or **pass as parameters** to a dispatched workflow. +## Versioning +This project follows *Semantic Versioning* according to [GitHub Actions versioning practice](https://github.com/actions/toolkit/blob/main/docs/action-versioning.md) + +>Current stable version is `v2` + ## Prerequirements This action expects you to have `maven` available in your workflow environment @@ -42,14 +47,15 @@ jobs: runs-on: ubuntu-latest name: Should extract GAV steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up JDK 11 - uses: actions/setup-java@v1 + uses: actions/setup-java@v2 with: java-version: 11 + distribution: temurin - name: Extract GAV id: extract - uses: andreacomo/maven-gav-extractor@v1 + uses: andreacomo/maven-gav-extractor@v2 - name: Log GAV run: | echo ${{ steps.extract.outputs.group-id }}