Skip to content

Commit

Permalink
#479: Removed step "Cache go-licenses" from project-keeper-verify.yml (
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada authored Oct 24, 2023
1 parent 51f70f8 commit aee7e0a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
6 changes: 5 additions & 1 deletion doc/changes/changes_2.9.13.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ Code name: Remove Enforcer Plugin

This release removes plugins from the generated `dependencies.md` file that are defined by Maven itself. This avoids a dependency on the Maven version which allows using any version you want.

The release also reduces build verbosity by setting the `quiet` option of `maven-javadoc-plugin` to `true`.
The release also reduces build verbosity by setting the `quiet` option of `maven-javadoc-plugin` to `true` and removes step "Cache go-licenses" from `project-keeper-verify.yml` to fix warnings about existing files already when restoring the cache.

## Features

* #480: Removed indirect plugins from `dependencies.md` & remove enforcer plugin

## Bugfixes

* #479: Removed step "Cache go-licenses" from project-keeper-verify.yml

## Dependency Updates

### Project-Keeper Shared Model Classes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: "1.20"
cache-dependency-path: |
go.sum
.github/workflows/project-keeper-verify.yml
.github/workflows/project-keeper.sh
$npmSetup

Expand All @@ -39,16 +43,5 @@ $npmSetup
restore-keys: |
${{ runner.os }}-pk-
- name: Cache go-licenses
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-licenses-${{ hashFiles('.github/workflows/project-keeper-verify.yml') }}
restore-keys: |
${{ runner.os }}-go-licenses-${{ hashFiles('.github/workflows/project-keeper-verify.yml') }}
${{ runner.os }}-go-licenses-
- name: Project Keeper Verify
run: ./.github/workflows/project-keeper.sh

0 comments on commit aee7e0a

Please sign in to comment.