Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
steps:
- name: Check out code
# https://github.com/actions/checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
# Needed to get all tags. Refer https://github.com/shipkit/shipkit-changelog#fetch-depth-on-ci
fetch-depth: '0'
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v5
with:
java-version: 1.8
- name: Build and test code, and test artifact publishing
Expand Down Expand Up @@ -68,12 +68,12 @@ jobs:
steps:
- name: Check out code
# https://github.com/actions/checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
# Needed to get all tags. Refer https://github.com/shipkit/shipkit-changelog#fetch-depth-on-ci
fetch-depth: '0'
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v5
with:
java-version: 1.8
- name: Release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme
Expand Down