diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-07-15 00:08:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 20:38:34 +0200 |
commit | 06b226ae8db093c4155f2fe2b4244f88c972631a (patch) | |
tree | 1661d4ae162d17c6548297c3f2d0dacd3d6dafdd /.github/workflows/deploy_snapshot.yml | |
parent | 1d7ec5ba6f230fa23e33426f5eecf801e2ab5d26 (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/deploy_snapshot.yml')
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index 621f12ef..3bb5d9c8 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -10,7 +10,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Decrypt secrets run: release/signing-setup.sh "$ENCRYPT_KEY" @@ -24,7 +24,7 @@ jobs: run: ./.github/checksum.sh checksum.txt - name: Cache gradle modules - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/caches/modules-2 key: ${{ runner.os }}-gradlemodules-${{ hashFiles('checksum.txt') }} @@ -32,7 +32,7 @@ jobs: ${{ runner.os }}-gradlemodules- - name: Cache gradle jars - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/caches/jars-3 key: ${{ runner.os }}-gradlejars-${{ hashFiles('checksum.txt') }} @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-gradlejars- - name: Cache gradle build - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/caches/build-cache-1 key: ${{ runner.os }}-gradlebuildcache-${{ hashFiles('checksum.txt') }} |