Skip to content

Commit

Permalink
Updated GitHub Action checkout version and removed cache
Browse files Browse the repository at this point in the history
- Cache had some failures, and with our count of dependencies it is not much
  helpful tool.
- see actions/runner#449

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed May 3, 2023
1 parent 738d1d5 commit a2a2da7
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/linux-jdks-with-current-maven-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
#
name: JDKBuilds
name: Compatibility

on:
push:
Expand All @@ -35,13 +35,7 @@ jobs:
runs-on: ubuntu-latest
container: "maven:${{ matrix.platform }}"
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ matrix.platform }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-${{ matrix.platform }}-
- uses: actions/checkout@v3
- name: 'Build'
run: mvn -B -V clean verify --fail-at-end

0 comments on commit a2a2da7

Please sign in to comment.