Skip to content

Commit

Permalink
Bump the catch-all group in /.github/actions/maven-build-and-tag with…
Browse files Browse the repository at this point in the history
… 3 updates (#779)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent 99a52f5 commit b9cfa29
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/actions/maven-build-and-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ outputs:
runs:
using: composite
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1

- uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
- uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -147,7 +147,7 @@ runs:
echo "MAVEN_BUILD_CACHE_ENABLED=$MAVEN_BUILD_CACHE_ENABLED" >> $GITHUB_ENV
echo "MAVEN_BUILD_CACHE_KEY=$MAVEN_BUILD_CACHE_KEY" >> $GITHUB_ENV
- uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
- uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
name: Restore Maven Build Cache before build
if: env.MAVEN_BUILD_CACHE_ENABLED == 'true'
with:
Expand Down Expand Up @@ -236,15 +236,15 @@ runs:
run: docker rm -f $(docker ps -a -q)
continue-on-error: true

- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: inputs.upload-jars == 'true'
with:
name: ${{ inputs.upload-jars-name }}
retention-days: 1
path: |
${{ inputs.upload-jars-path }}
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: inputs.upload-coverage == 'true'
with:
name: coverage
Expand Down Expand Up @@ -286,14 +286,14 @@ runs:
rm -fr ~/.m2/repository/com/alfresco
- name: Save maven cache
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
uses: actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
if: github.event_name == 'push' || env.IS_PREVIEW == 'true'
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

- name: Save maven build cache on push
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
uses: actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
if: env.MAVEN_BUILD_CACHE_ENABLED == 'true'
with:
path: ~/.m2/build-cache
Expand Down

0 comments on commit b9cfa29

Please sign in to comment.