Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:


- name: "Cache: Local Maven Repository"
uses: actions/cache@v4
uses: actions/cache@v5
if: runner.os != 'macOS' # FIXME workaround for https://github.com/actions/runner/issues/449#issuecomment-3566876749
with:
# Excluded sub directory not working https://github.com/actions/toolkit/issues/713
Expand All @@ -171,7 +171,7 @@ jobs:


- name: "Cache: Local Tycho Repository"
uses: actions/cache@v4
uses: actions/cache@v5
if: runner.os != 'macOS' # FIXME workaround for https://github.com/actions/runner/issues/449#issuecomment-3566876749
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:


- name: "Cache: Local Maven Repository"
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
if: matrix.language == 'java'
with:
# Excluded sub directory not working https://github.com/actions/toolkit/issues/713
Expand All @@ -123,7 +123,7 @@ jobs:


- name: "Cache: Local Tycho Repository"
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
if: matrix.language == 'java'
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/licensecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:


- name: "Cache: Local Maven Repository"
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
# Excluded sub directory not working https://github.com/actions/toolkit/issues/713
path: |
Expand All @@ -85,7 +85,7 @@ jobs:


- name: "Cache: Local Tycho Repository"
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
~/.m2/repository/.cache/tycho
Expand Down
Loading