Skip to content

Commit 9cffd79

Browse files
committed
build: update to latest actions for ci.
1 parent fdd23a0 commit 9cffd79

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828
- name: Grant execute permission for gradlew
2929
run: chmod +x gradlew
3030
- name: cache gradle dependencies
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
with:
3333
path: |
3434
~/.gradle/caches
@@ -37,4 +37,4 @@ jobs:
3737
restore-keys: |
3838
${{ runner.os }}-gradle-
3939
- name: Run Tests
40-
run: ./gradlew check
40+
run: ./gradlew check

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
environment: deployment
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Get tag
1717
id: vars
1818
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
@@ -27,7 +27,7 @@ jobs:
2727
- name: Grant execute permission for gradlew
2828
run: chmod +x gradlew
2929
- name: cache gradle dependencies
30-
uses: actions/cache@v2
30+
uses: actions/cache@v3
3131
with:
3232
path: |
3333
~/.gradle/caches

.github/workflows/snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
environment: deployment
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Grant execute permission for gradlew
1414
run: chmod +x gradlew
1515
- name: cache gradle dependencies
16-
uses: actions/cache@v2
16+
uses: actions/cache@v3
1717
with:
1818
path: |
1919
~/.gradle/caches

0 commit comments

Comments
 (0)