diff --git a/.github/workflows/docker-tag-latest-release.yml b/.github/workflows/docker-tag-latest-release.yml
deleted file mode 100644
index a871f36cead..00000000000
--- a/.github/workflows/docker-tag-latest-release.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-name: Docker Tag latest-release
-
-# Run every couple of days
-on:
- schedule:
- - cron: "30 12 */2 * *"
-
-jobs:
- # This pulls all containers for the last known release tag, and tags as latest-release or x-latest-release for shared repo
- tagLatestRelease:
- runs-on: ubuntu-latest
-
- steps:
-
- # Pull the code so we have git metadata
- - name: Checkout code
- uses: actions/checkout@v2
-
- # This action will "unshallow" so we have all tag info
- - name: Get latest tag
- id: tagger
- uses: jimschubert/query-tag-action@v2
- with:
- include: 'v*'
- exclude: '*-rc*'
- commit-ish: 'HEAD~'
-
- - name: DockerHub Login
- run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
-
- # Tags openapitools/openapi-generator-cli
- - name: "Tag openapi-generator-cli:x"
- id: tag-openapi-generator-cli
- if: always()
- run: |
- echo 'Tagging as latest-release: ${{steps.tagger.outputs.tag}}'
- docker pull openapitools/openapi-generator-cli:${{steps.tagger.outputs.tag}}
- docker tag openapitools/openapi-generator-cli:${{steps.tagger.outputs.tag}} openapitools/openapi-generator-cli:latest-release
- docker push openapitools/openapi-generator-cli:latest-release
-
- # Tags openapitools/openapi-generator-online
- - name: "Tag openapi-generator-online:x"
- id: tag-openapi-generator-online
- if: always()
- run: |
- echo 'Tagging as latest-release: ${{steps.tagger.outputs.tag}}'
- docker pull openapitools/openapi-generator-online:${{steps.tagger.outputs.tag}}
- docker tag openapitools/openapi-generator-online:${{steps.tagger.outputs.tag}} openapitools/openapi-generator-online:latest-release
- docker push openapitools/openapi-generator-online:latest-release
-
- # Tags openapitools/openapi-generator's CLI image (this repo holds CLI + Online via tag prefix)
- - name: "Tag openapi-generator:cli-x"
- id: tag-cli
- if: always()
- run: |
- echo 'Tagging as latest-release: ${{steps.tagger.outputs.tag}}'
- docker pull openapitools/openapi-generator:cli-${{steps.tagger.outputs.tag}}
- docker tag openapitools/openapi-generator:cli-${{steps.tagger.outputs.tag}} openapitools/openapi-generator:cli-latest-release
- docker push openapitools/openapi-generator:cli-latest-release
-
- # Tags openapitools/openapi-generator's ONLINE image (this repo holds CLI + Online via tag prefix)
- - name: "Tag openapi-generator:online-x"
- id: tag-online
- if: always()
- run: |
- echo 'Tagging as latest-release: ${{steps.tagger.outputs.tag}}'
- docker pull openapitools/openapi-generator:online-${{steps.tagger.outputs.tag}}
- docker tag openapitools/openapi-generator:online-${{steps.tagger.outputs.tag}} openapitools/openapi-generator:online-latest-release
- docker push openapitools/openapi-generator:online-latest-release
-
- # Clean up docker credentials/configs/etc.
- - name: Cleanup
- if: always()
- run: |
- rm -f ${HOME}/.docker/config.json
diff --git a/modules/openapi-generator-cli/pom.xml b/modules/openapi-generator-cli/pom.xml
index eff2ae39ca4..c71c8d6d1f1 100644
--- a/modules/openapi-generator-cli/pom.xml
+++ b/modules/openapi-generator-cli/pom.xml
@@ -4,7 +4,7 @@
org.openapitools
openapi-generator-project
- 5.3.0-SNAPSHOT
+ 5.3.0
../..
diff --git a/modules/openapi-generator-core/pom.xml b/modules/openapi-generator-core/pom.xml
index 9eedc6a8347..879869d0895 100644
--- a/modules/openapi-generator-core/pom.xml
+++ b/modules/openapi-generator-core/pom.xml
@@ -6,7 +6,7 @@
openapi-generator-project
org.openapitools
- 5.3.0-SNAPSHOT
+ 5.3.0
../..
diff --git a/modules/openapi-generator-gradle-plugin/gradle.properties b/modules/openapi-generator-gradle-plugin/gradle.properties
index 4c303de9b36..7dcd9a9bb54 100644
--- a/modules/openapi-generator-gradle-plugin/gradle.properties
+++ b/modules/openapi-generator-gradle-plugin/gradle.properties
@@ -1,5 +1,5 @@
# RELEASE_VERSION
-openApiGeneratorVersion=5.3.0-SNAPSHOT
+openApiGeneratorVersion=5.3.0
# /RELEASE_VERSION
# BEGIN placeholders
diff --git a/modules/openapi-generator-gradle-plugin/pom.xml b/modules/openapi-generator-gradle-plugin/pom.xml
index d5ba85c0ef3..427073ce1df 100644
--- a/modules/openapi-generator-gradle-plugin/pom.xml
+++ b/modules/openapi-generator-gradle-plugin/pom.xml
@@ -4,7 +4,7 @@
org.openapitools
openapi-generator-project
- 5.3.0-SNAPSHOT
+ 5.3.0
../..
diff --git a/modules/openapi-generator-maven-plugin/examples/java-client.xml b/modules/openapi-generator-maven-plugin/examples/java-client.xml
index 5a559d77aba..82c2a093326 100644
--- a/modules/openapi-generator-maven-plugin/examples/java-client.xml
+++ b/modules/openapi-generator-maven-plugin/examples/java-client.xml
@@ -13,7 +13,7 @@
org.openapitools
openapi-generator-maven-plugin
- 5.3.0-SNAPSHOT
+ 5.3.0
diff --git a/modules/openapi-generator-maven-plugin/examples/kotlin.xml b/modules/openapi-generator-maven-plugin/examples/kotlin.xml
index 7e0e42967f0..429de667046 100644
--- a/modules/openapi-generator-maven-plugin/examples/kotlin.xml
+++ b/modules/openapi-generator-maven-plugin/examples/kotlin.xml
@@ -15,7 +15,7 @@
org.openapitools
openapi-generator-maven-plugin
- 5.3.0-SNAPSHOT
+ 5.3.0
diff --git a/modules/openapi-generator-maven-plugin/examples/multi-module/java-client/pom.xml b/modules/openapi-generator-maven-plugin/examples/multi-module/java-client/pom.xml
index 7054853715b..d367fd18666 100644
--- a/modules/openapi-generator-maven-plugin/examples/multi-module/java-client/pom.xml
+++ b/modules/openapi-generator-maven-plugin/examples/multi-module/java-client/pom.xml
@@ -19,7 +19,7 @@
org.openapitools
openapi-generator-maven-plugin
- 5.3.0-SNAPSHOT
+ 5.3.0
diff --git a/modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml b/modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml
index a2408e81815..22ba4c24254 100644
--- a/modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml
+++ b/modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml
@@ -13,7 +13,7 @@
org.openapitools
openapi-generator-maven-plugin
- 5.3.0-SNAPSHOT
+ 5.3.0
diff --git a/modules/openapi-generator-maven-plugin/examples/non-java.xml b/modules/openapi-generator-maven-plugin/examples/non-java.xml
index 3dd66f500de..9aea1f9d18f 100644
--- a/modules/openapi-generator-maven-plugin/examples/non-java.xml
+++ b/modules/openapi-generator-maven-plugin/examples/non-java.xml
@@ -13,7 +13,7 @@
org.openapitools
openapi-generator-maven-plugin
- 5.3.0-SNAPSHOT
+ 5.3.0
diff --git a/modules/openapi-generator-maven-plugin/examples/spring.xml b/modules/openapi-generator-maven-plugin/examples/spring.xml
index 0efdb925059..ae631497275 100644
--- a/modules/openapi-generator-maven-plugin/examples/spring.xml
+++ b/modules/openapi-generator-maven-plugin/examples/spring.xml
@@ -20,7 +20,7 @@
org.openapitools
openapi-generator-maven-plugin
- 5.3.0-SNAPSHOT
+ 5.3.0
diff --git a/modules/openapi-generator-maven-plugin/pom.xml b/modules/openapi-generator-maven-plugin/pom.xml
index 1ba1413d34c..404ad99e7bc 100644
--- a/modules/openapi-generator-maven-plugin/pom.xml
+++ b/modules/openapi-generator-maven-plugin/pom.xml
@@ -5,7 +5,7 @@
org.openapitools
openapi-generator-project
- 5.3.0-SNAPSHOT
+ 5.3.0
../..
diff --git a/modules/openapi-generator-online/pom.xml b/modules/openapi-generator-online/pom.xml
index a63300a1adf..cedd743684d 100644
--- a/modules/openapi-generator-online/pom.xml
+++ b/modules/openapi-generator-online/pom.xml
@@ -4,7 +4,7 @@
org.openapitools
openapi-generator-project
- 5.3.0-SNAPSHOT
+ 5.3.0
../..
diff --git a/modules/openapi-generator/pom.xml b/modules/openapi-generator/pom.xml
index 0f8609a0c37..bccc0a8b781 100644
--- a/modules/openapi-generator/pom.xml
+++ b/modules/openapi-generator/pom.xml
@@ -4,7 +4,7 @@
org.openapitools
openapi-generator-project
- 5.3.0-SNAPSHOT
+ 5.3.0
../..
diff --git a/pom.xml b/pom.xml
index 92c2a205849..cf557c86d46 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
pom
openapi-generator-project
- 5.3.0-SNAPSHOT
+ 5.3.0
https://github.com/openapitools/openapi-generator