File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88jobs :
99 build :
10- runs-on : ubuntu-20.04
10+ runs-on : ubuntu-latest
1111 strategy :
1212 fail-fast : false
1313 matrix :
1414 java-version : [11, 17, 21]
1515
1616 steps :
17- - uses : actions/checkout@v2
17+ - uses : actions/checkout@v4
1818 - name : Set up JDK ${{ matrix.java-version }}
1919 uses : actions/setup-java@v2
2020 with :
Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - name : Checkout code
10- uses : actions/checkout@v2
10+ uses : actions/checkout@v4
1111 with :
1212 fetch-depth : 0
1313 - name : Prepare tag
3535 needs : check-release-tag
3636 if : ${{ needs.check-release-tag.outputs.tag }}
3737 steps :
38- - uses : actions/checkout@v2
38+ - uses : actions/checkout@v4
3939 - name : Prepare tag
4040 run : |
4141 export TAG=v$(awk '/^version = / { gsub("\"", ""); print $3 }' build.gradle)
6363 runs-on : ubuntu-latest
6464 needs : create-github-release
6565 steps :
66- - uses : actions/checkout@v2
66+ - uses : actions/checkout@v4
6767 - name : Create gradle.properties
6868 shell : bash
6969 run : |
9090 NEXUS_USERNAME : ${{ secrets.MAVEN_USERNAME }}
9191 NEXUS_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
9292 steps :
93- - uses : actions/checkout@v2
93+ - uses : actions/checkout@v4
9494 - id : get_staging_repository_id
9595 name : Get staging repository id
9696 run : |
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ jobs:
1111 name : Prepare release
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v2
14+ - uses : actions/checkout@v4
1515 - name : Get current version
1616 shell : bash
1717 run : |
1818 CURRENT_VERSION=$(awk '/^version = / { gsub("\"", ""); print $3 }' build.gradle)
1919 echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV
20- - uses : actions/checkout@v2
20+ - uses : actions/checkout@v4
2121 with :
2222 repository : pusher/public_actions
2323 path : .github/actions
You can’t perform that action at this time.
0 commit comments