Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b88d579
AAE-26175 Fix on cache keys
wojciech-piotrowiak Oct 2, 2025
b525af6
AAE-26175 Fix on cache keys
wojciech-piotrowiak Oct 2, 2025
08fdfbd
Update maven-configure action to specific commit for improved stability
wojciech-piotrowiak Oct 2, 2025
e2f2c22
Improve Maven build cache restore keys for better accuracy
wojciech-piotrowiak Oct 2, 2025
0c1e251
Improve Maven build cache restore keys for better accuracy
wojciech-piotrowiak Oct 2, 2025
929c974
Add missing maven credentials
erdemedeiros Oct 2, 2025
9aa0689
Merge branch 'master' into improvement/AAE-26175-mvn-cache-build-rest…
wojciech-piotrowiak Oct 2, 2025
efc9d3f
Bump version to v9.2.1
wojciech-piotrowiak Oct 2, 2025
6245d64
Update maven-configure action to a specific commit for improved stabi…
wojciech-piotrowiak Oct 3, 2025
f7ab49c
Update version to v9.3.2 and improve Maven build cache restore key logic
wojciech-piotrowiak Oct 8, 2025
08639fe
Merge branch 'master' into improvement/AAE-26175-mvn-cache-build-rest…
wojciech-piotrowiak Oct 8, 2025
a29b0c9
Fix Maven build cache key to remove redundant identifiers for improve…
wojciech-piotrowiak Oct 8, 2025
b1746ea
Refactor Maven build cache key to simplify logic and improve consistency
wojciech-piotrowiak Oct 8, 2025
a8e53b9
Enhance Maven build cache actions to clarify cache hit status and imp…
wojciech-piotrowiak Oct 9, 2025
60c0831
Update maven-configure action to a specific commit for improved stabi…
wojciech-piotrowiak Oct 9, 2025
a5cf9ec
Revert "Update maven-configure action to a specific commit for improv…
wojciech-piotrowiak Oct 9, 2025
024fbc8
Revert "Enhance Maven build cache actions to clarify cache hit status…
wojciech-piotrowiak Oct 9, 2025
6212764
maven credentials fix
wojciech-piotrowiak Oct 9, 2025
1626842
remove unnecessary maven-password and maven-version inputs from actio…
wojciech-piotrowiak Oct 9, 2025
5a91f2d
Merge branch 'master' into improvement/AAE-26175-mvn-cache-build-rest…
wojciech-piotrowiak Oct 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions .github/actions/maven-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,6 @@ inputs:
maven-username:
description: Nexus user name
required: true
maven-password:
description: Nexus password
required: true
maven-version:
description: Maven version to setup, i.e. 3.9+ for Maven Build Cache extension
required: false
default: ''
quay-username:
description: Quay.io user name
required: false
Expand Down Expand Up @@ -120,9 +113,7 @@ runs:
- name: Update pom files to the preview version
if: steps.maven-configure.outputs.preview-version != ''
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected]
env:
MAVEN_USERNAME: ${{ inputs.maven-username }}
MAVEN_PASSWORD: ${{ inputs.maven-password }}

with:
version: ${{ steps.maven-configure.outputs.preview-version }}
maven-cli-opts: ${{ steps.maven-configure.outputs.maven-options }} ${{ inputs.maven-resolver-transport-options }}
Expand Down Expand Up @@ -172,8 +163,6 @@ runs:
env:
MAVEN_RESOLVER_TRANSPORT_OPTS: ${{ inputs.maven-resolver-transport-options }}
MAVEN_CLI_OPTS: ${{ steps.maven-configure.outputs.maven-options }} -Dlogging.root.level=off -Dspring.main.banner-mode=off -Ddocker.skip -Dmaven.build.cache.enabled=${{ env.MAVEN_BUILD_CACHE_ENABLED }}
MAVEN_USERNAME: ${{ inputs.maven-username }}
MAVEN_PASSWORD: ${{ inputs.maven-password }}

- name: Remove running docker containers
if: inputs.reuse-testcontainers == 'true'
Expand Down
5 changes: 2 additions & 3 deletions .github/actions/maven-configure/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ runs:
id: set-use-maven_build-cache-env-variable
env:
MAVEN_BUILD_CACHE_ENABLED: ${{ inputs.maven-build-cache-key != '' && !contains(github.event.pull_request.labels.*.name, inputs.maven-build-cache-skip-label) }}
MAVEN_BUILD_CACHE_KEY: ${{ runner.os }}-build-cache-${{ inputs.maven-build-cache-key }}-${{ env.GITHUB_PR_NUMBER || github.ref_name }}-${{ github.run_id }}-${{ github.run_attempt }}
MAVEN_BUILD_CACHE_KEY: ${{ runner.os }}-build-cache-${{ inputs.maven-build-cache-key }}
shell: bash
run: |
echo "MAVEN_BUILD_CACHE_ENABLED=$MAVEN_BUILD_CACHE_ENABLED" >> $GITHUB_ENV
Expand All @@ -121,5 +121,4 @@ runs:
path: ~/.m2/build-cache
key: ${{ env.MAVEN_BUILD_CACHE_KEY }}
restore-keys: |
${{ runner.os }}-build-cache-${{ inputs.maven-build-cache-key }}-PR-${{ github.event.pull_request.number }}-
${{ runner.os }}-build-cache-${{ inputs.maven-build-cache-key }}-${{ github.base_ref || github.ref_name }}-
${{ runner.os }}-build-cache-${{ inputs.maven-build-cache-key }}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v9.3.1
v9.3.2
Loading