Skip to content

Commit f90211c

Browse files
committed
fix: change action name
1 parent 26d8861 commit f90211c

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -60,24 +60,24 @@ Read more about software distribution in AWS in my [LinkedIn article](https://ww
6060
This action is a combination of few other actions mainly `actions/setup-java` and `aws-actions/configure-aws-credentials`.
6161
All `java-*` inputs are pass through parameters to `actions/setup-java` action, so please refer to [setup-java documentation](https://github.com/actions/setup-java?tab=readme-ov-file#usage)
6262

63-
| Name | Required | Default | Description |
64-
|-------------------------------|----------|-----------------------|---------------------------------------------------------------------------------------------------------|
65-
| `aws-account` | **Yes** | | AWS account number where the CodeArtifact domain is located |
66-
| `aws-login` | No | `true` | Whether to login to AWS. Set to `false` if you handle AWS login separately |
67-
| `aws-codeartifact-domain` | **Yes** | | CodeArtifact domain name |
68-
| `aws-codeartifact-repository` | **Yes** | `maven` | CodeArtifact repository name |
69-
| `aws-region` | **Yes** | | AWS region where the CodeArtifact domain is located |
70-
| `aws-role` | No | `ci/builder` | IAM role to assume for CodeArtifact access |
71-
| `java-cache` | No | `maven` | Enable Maven dependency caching. Use empty string `""` to disable |
72-
| `java-cache-dependency-path` | No | (see documentation) | See description at [actions/setup-java](https://github.com/actions/setup-java?tab=readme-ov-file#usage) |
73-
| `java-distribution` | No | `temurin` | Java distribution. Default is Temurin as it is pre-cached in ubuntu-latest |
74-
| `java-version` | No | `21` | Java version to use. Default is latest LTS (21 as of June 2025) |
75-
| `settings-mirrors` | No | | Maven settings.xml mirrors section (XML format) |
76-
| `settings-pluginGroups` | No | | Maven settings.xml pluginGroups section (XML format) |
77-
| `settings-pluginRepositories` | No | Maven Central + repo1 | Additional plugin repositories in XML format to be placed in front of CodeArtifact |
78-
| `settings-profile-properties` | No | | Maven settings.xml profile properties section (XML format) |
79-
| `settings-proxies` | No | | Maven settings.xml proxies section (XML format) |
80-
| `settings-repositories` | No | Maven Central + repo1 | Additional Maven repositories in XML format to be placed before CodeArtifact |
63+
| Name | Required | Default | Description |
64+
|-------------------------------|----------|---------------|---------------------------------------------------------------------------------------------------------|
65+
| `aws-account` | **Yes** | | AWS account number where the CodeArtifact domain is located |
66+
| `aws-login` | No | `true` | Whether to login to AWS. Set to `false` if you handle AWS login separately |
67+
| `aws-codeartifact-domain` | **Yes** | | CodeArtifact domain name |
68+
| `aws-codeartifact-repository` | **Yes** | `maven` | CodeArtifact repository name |
69+
| `aws-region` | **Yes** | | AWS region where the CodeArtifact domain is located |
70+
| `aws-role` | No | `ci/builder` | IAM role to assume for CodeArtifact access |
71+
| `java-cache` | No | `maven` | Enable Maven dependency caching. Use empty string `""` to disable |
72+
| `java-cache-dependency-path` | No | (see doc.) | See description at [actions/setup-java](https://github.com/actions/setup-java?tab=readme-ov-file#usage) |
73+
| `java-distribution` | No | `temurin` | Java distribution. Default is Temurin as it is pre-cached in ubuntu-latest |
74+
| `java-version` | No | `21` | Java version to use. Default is latest LTS (21 as of June 2025) |
75+
| `settings-mirrors` | No | | Maven settings.xml mirrors section (XML format) |
76+
| `settings-pluginGroups` | No | | Maven settings.xml pluginGroups section (XML format) |
77+
| `settings-pluginRepositories` | No | Maven Central | Additional plugin repositories in XML format to be placed in front of CodeArtifact |
78+
| `settings-profile-properties` | No | | Maven settings.xml profile properties section (XML format) |
79+
| `settings-proxies` | No | | Maven settings.xml proxies section (XML format) |
80+
| `settings-repositories` | No | Maven Central | Additional Maven repositories in XML format to be placed before CodeArtifact |
8181

8282
Notes:
8383
1. for `aws-account` it is recommended to have a dedicated AWS account (not dev, not prod) to store artifacts (S3 binaries, CodeArtifact, Docker images)

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Setup Java w/ CodeArtifact'
1+
name: 'Setup Maven with CodeArtifact'
22
author: 'Alexey Chekulaev'
33
description: 'Setup java + maven and login (generate token) to resolve maven dependencies from AWS CodeArtifact repository'
44
branding:

0 commit comments

Comments
 (0)