@@ -10,18 +10,18 @@ jobs:
1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : actions/checkout@v4
14- - uses : tibdex/github-app-token@v1
13+ - uses : actions/checkout@v6
14+ - uses : tibdex/github-app-token@v2
1515 id : generate-token
1616 with :
1717 app_id : ${{ secrets.APP_ID }}
1818 private_key : ${{ secrets.APP_PRIVATE_KEY }}
1919 - name : Set up Python 3.10
20- uses : actions/setup-python@v4
20+ uses : actions/setup-python@v6
2121 with :
2222 python-version : ' 3.10'
2323 - name : Set up Java 11
24- uses : actions/setup-java@v4
24+ uses : actions/setup-java@v5
2525 with :
2626 java-version : 11
2727 distribution : temurin
3030 server-password : MAVEN_PASSWORD
3131 gpg-private-key : ${{ secrets.OSSRH_GPG_PRIVATE_KEY }}
3232 - name : Cache local Maven repository
33- uses : actions/cache@v4
33+ uses : actions/cache@v5
3434 with :
3535 path : ~/.m2/repository
3636 key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
7272 run : |
7373 . ./CI/prepare-javadocs.sh
7474 - name : Checkout gh-pages
75- uses : actions/checkout@v4
75+ uses : actions/checkout@v6
7676 with :
7777 ref : " gh-pages"
7878 fetch-depth : 0
8383 TMPDIR="$(dirname -- "${0}")"
8484 . $TMPDIR/publish-javadocs.sh
8585 - name : Checkout master
86- uses : actions/checkout@v4
86+ uses : actions/checkout@v6
8787 with :
8888 ref : " master"
8989 fetch-depth : 0
@@ -93,15 +93,15 @@ jobs:
9393 run : |
9494 . ./CI/post-release.sh
9595 - name : Create Next Snapshot Pull Request
96- uses : peter-evans/create-pull-request@v4
96+ uses : peter-evans/create-pull-request@v8
9797 if : env.RELEASE_OK == 'yes'
9898 with :
9999 token : ${{ steps.generate-token.outputs.token }}
100100 commit-message : bump snapshot ${{ env.SC_NEXT_VERSION }}-SNAPSHOT
101101 title : ' bump snapshot ${{ env.SC_NEXT_VERSION }}-SNAPSHOT'
102102 branch : bump-snap-${{ env.SC_NEXT_VERSION }}-SNAPSHOT
103103 - name : Checkout 1.5
104- uses : actions/checkout@v4
104+ uses : actions/checkout@v6
105105 with :
106106 ref : " 1.5"
107107 fetch-depth : 0
@@ -112,15 +112,15 @@ jobs:
112112 TMPDIR="$(dirname -- "${0}")"
113113 . $TMPDIR/update-v1-readme.sh ${{ env.SC_LAST_RELEASE }} ${{ env.SC_VERSION }}
114114 - name : Create Update V1 Readme Pull Request
115- uses : peter-evans/create-pull-request@v4
115+ uses : peter-evans/create-pull-request@v8
116116 if : env.RELEASE_OK == 'yes'
117117 with :
118118 token : ${{ steps.generate-token.outputs.token }}
119119 commit-message : update 1.5 Readme with new v2 version ${{ env.SC_VERSION }}
120120 title : ' update 1.5 Readme with new v2 version ${{ env.SC_VERSION }}'
121121 branch : update-v1-readme-${{ env.SC_VERSION }}
122122 - name : Checkout Wiki
123- uses : actions/checkout@v4
123+ uses : actions/checkout@v6
124124 with :
125125 repository : swagger-api/swagger-core.wiki
126126 token : ${{ steps.generate-token.outputs.token }}
@@ -135,7 +135,7 @@ jobs:
135135 TMPDIR="$(dirname -- "${0}")"
136136 . $TMPDIR/update-wiki.sh
137137 - name : Checkout master
138- uses : actions/checkout@v2
138+ uses : actions/checkout@v6
139139 with :
140140 ref : " master"
141141 fetch-depth : 0
0 commit comments