Skip to content

Commit

Permalink
AMP-94015 update the version for workflow actions for node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
qingzhuozhen committed Feb 23, 2024
1 parent d882bc6 commit c323a4a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'zulu'

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Docs
run: ./gradlew dokkaHtmlMultiModule
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/pull-request-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- uses: actions/checkout@v3
cache: 'gradle'
- uses: actions/checkout@v4
- name: Build
run: ./gradlew build
- name: Unit Test
Expand All @@ -20,7 +21,7 @@ jobs:
run: ./gradlew ktlintCheck
- name: Upload build results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
# artifacts name
name: build-results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
needs: [authorize]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'zulu'
Expand Down

0 comments on commit c323a4a

Please sign in to comment.