Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): upgrade actions version and move to Java 17
Browse files Browse the repository at this point in the history
ThibaultBee committed Jan 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 7aba27b commit 73dcf70
Showing 4 changed files with 8 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '12'
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
2 changes: 1 addition & 1 deletion .github/workflows/create-release-from-changelog.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:
update-documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create draft release if needed
uses: apivideo/api.video-release-from-changelog-action@main
with:
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -8,11 +8,11 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '12'
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
17 changes: 3 additions & 14 deletions .github/workflows/update-documentation.yml
Original file line number Diff line number Diff line change
@@ -5,25 +5,14 @@ on:
types: [published]

jobs:
update-documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update readme.io documentation
uses: apivideo/[email protected]
with:
document-slug: apivideo-android-kotlin-livestream-module
markdown-file-path: README.md
readme-io-api-key: ${{ secrets.README_IO_API_KEY }}
make-relative-links-absolute: true
update-api-documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 12
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '12'
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew

0 comments on commit 73dcf70

Please sign in to comment.