Skip to content

Commit 6fcbf6f

Browse files
committed
chore(ci): update actions
1 parent f0f7052 commit 6fcbf6f

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- name: Set up JDK 12
11-
uses: actions/setup-java@v1
9+
- uses: actions/checkout@v3
10+
- name: Set up Java
11+
uses: actions/setup-java@v3
1212
with:
13-
java-version: 12
13+
java-version: '12'
14+
distribution: 'adopt'
1415
- name: Grant execute permission for gradlew
1516
run: chmod +x gradlew
1617
- name: Build

.github/workflows/create-release-from-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
update-documentation:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Create draft release if needed
1414
uses: apivideo/api.video-release-from-changelog-action@v1.1.0
1515
with:

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- name: Set up JDK 12
11-
uses: actions/setup-java@v1
9+
- uses: actions/checkout@v3
10+
- name: Set up Java
11+
uses: actions/setup-java@v3
1212
with:
13-
java-version: 12
13+
java-version: '12'
14+
distribution: 'adopt'
1415
- name: Grant execute permission for gradlew
1516
run: chmod +x gradlew
1617
- name: Run tests

0 commit comments

Comments
 (0)