From 30c233c9538bafc3594aecb5c77770d65f98a836 Mon Sep 17 00:00:00 2001 From: games647 Date: Thu, 18 Feb 2021 18:21:32 +0100 Subject: [PATCH] Fix workflow version --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ebad8b22..9e8f8a1b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -19,14 +19,14 @@ jobs: # Run steps steps: # Pull changes - - uses: actions/checkout@v2.3 + - uses: actions/checkout@v2.3.4 # Cache artifacts - however this has the downside that we don't get notified of # artifact resolution failures like invalid repository # Nevertheless the repositories should be more stable and it makes no sense to pull # a same version every time # A dry run would make more sense - - uses: actions/cache@v2.1 + - uses: actions/cache@v2.1.4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}