aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull_request.yml
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2020-07-15 00:08:34 +0530
committerGitHub <noreply@github.com>2020-07-14 20:38:34 +0200
commit06b226ae8db093c4155f2fe2b4244f88c972631a (patch)
tree1661d4ae162d17c6548297c3f2d0dacd3d6dafdd /.github/workflows/pull_request.yml
parent1d7ec5ba6f230fa23e33426f5eecf801e2ab5d26 (diff)
github: update all Actions (#934)
Switch publicsuffix update workflow to use the same pull-request action as release drafter. Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github/workflows/pull_request.yml')
-rw-r--r--.github/workflows/pull_request.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 19e05638..9f07976a 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -28,7 +28,7 @@ jobs:
- name: Checkout repository
if: ${{ steps.service-changed.outputs.result == 'true' }}
- uses: actions/checkout@v1
+ uses: actions/checkout@v2
- name: Copy CI gradle.properties
if: ${{ steps.service-changed.outputs.result == 'true' }}
@@ -40,7 +40,7 @@ jobs:
- name: Cache gradle modules
if: ${{ steps.service-changed.outputs.result == 'true' }}
- uses: actions/cache@v1
+ uses: actions/cache@v2
with:
path: ~/.gradle/caches/modules-2
key: ${{ runner.os }}-gradlemodules-${{ hashFiles('checksum.txt') }}
@@ -49,7 +49,7 @@ jobs:
- name: Cache gradle jars
if: ${{ steps.service-changed.outputs.result == 'true' }}
- uses: actions/cache@v1
+ uses: actions/cache@v2
with:
path: ~/.gradle/caches/jars-3
key: ${{ runner.os }}-gradlejars-${{ hashFiles('checksum.txt') }}
@@ -58,7 +58,7 @@ jobs:
- name: Cache gradle build
if: ${{ steps.service-changed.outputs.result == 'true' }}
- uses: actions/cache@v1
+ uses: actions/cache@v2
with:
path: ~/.gradle/caches/build-cache-1
key: ${{ runner.os }}-gradlebuildcache-${{ hashFiles('checksum.txt') }}