@@ -21,16 +21,16 @@ jobs:
2121 lucee-matrix : ${{ steps.set-matrix.outputs.matrix }}
2222 steps :
2323 - name : Checkout repository
24- uses : actions/checkout@v4
24+ uses : actions/checkout@v6
2525
2626 - name : Set up JDK 11
27- uses : actions/setup-java@v4
27+ uses : actions/setup-java@v5
2828 with :
2929 distribution : ' temurin'
3030 java-version : ' 11'
3131
3232 - name : Cache Maven packages
33- uses : actions/cache@v4
33+ uses : actions/cache@v5
3434 with :
3535 path : ~/.m2
3636 key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
5454 echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
5555
5656 - name : Cache Lucee files
57- uses : actions/cache@v4
57+ uses : actions/cache@v5
5858 with :
5959 path : ~/work/_actions/lucee/script-runner/main/lucee-download-cache
6060 key : lucee-downloads
@@ -68,16 +68,16 @@ jobs:
6868 build :
6969 runs-on : ubuntu-latest
7070 steps :
71- - uses : actions/checkout@v4
71+ - uses : actions/checkout@v6
7272
7373 - name : Set up JDK 11
74- uses : actions/setup-java@v4
74+ uses : actions/setup-java@v5
7575 with :
7676 java-version : ' 11'
7777 distribution : ' adopt'
7878
7979 - name : Cache Maven packages
80- uses : actions/cache@v4
80+ uses : actions/cache@v5
8181 with :
8282 path : ~/.m2
8383 key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
9090 mvn -B -e -f pom.xml clean install
9191
9292 - name : Upload Artifact
93- uses : actions/upload-artifact@v4
93+ uses : actions/upload-artifact@v7
9494 with :
9595 name : websocketclient-lex
9696 path : target/*.lex
@@ -104,22 +104,22 @@ jobs:
104104 lucee : ${{ fromJSON(needs.setup.outputs.lucee-matrix) }}
105105 java : [ 11, 21 ]
106106 steps :
107- - uses : actions/checkout@v4
107+ - uses : actions/checkout@v6
108108
109109 - name : Download Artifact
110- uses : actions/download-artifact@v4
110+ uses : actions/download-artifact@v8
111111 with :
112112 name : websocketclient-lex
113113 path : target
114114
115115 - name : Checkout Lucee
116- uses : actions/checkout@v4
116+ uses : actions/checkout@v6
117117 with :
118118 repository : lucee/lucee
119119 path : lucee
120120
121121 - name : Set up JDK ${{ matrix.java }}
122- uses : actions/setup-java@v4
122+ uses : actions/setup-java@v5
123123 with :
124124 java-version : ${{ matrix.java }}
125125 distribution : ' adopt'
@@ -141,16 +141,16 @@ jobs:
141141 if : always() && needs.test.result == 'success' && github.ref == 'refs/heads/master' && !inputs.dry-run
142142 steps :
143143 - name : Checkout repository
144- uses : actions/checkout@v4
144+ uses : actions/checkout@v6
145145
146146 - name : Set up JDK 11
147- uses : actions/setup-java@v4
147+ uses : actions/setup-java@v5
148148 with :
149149 distribution : ' temurin'
150150 java-version : ' 11'
151151
152152 - name : Cache Maven packages
153- uses : actions/cache@v4
153+ uses : actions/cache@v5
154154 with :
155155 path : ~/.m2
156156 key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
0 commit comments