Velocity queueing solution
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update main.yml

authored by

James Lyne and committed by
GitHub
0448a1d9 0f3a5274

+5 -5
+5 -5
.github/workflows/main.yml
··· 23 23 # Steps represent a sequence of tasks that will be executed as part of the job 24 24 steps: 25 25 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 26 - - uses: actions/checkout@v2 26 + - uses: actions/checkout@v4 27 27 28 28 - name: Run a one-line script 29 29 run: chmod +x gradlew 30 30 31 - - uses: actions/setup-java@v1 31 + - uses: actions/setup-java@v4 32 32 with: 33 - java-version: 17 33 + java-version: 21 34 34 35 35 - name: Gradle Command 36 36 # You may pin to the exact commit or the version. 37 37 # uses: gradle/gradle-build-action@90ccf054e6b9905f30f98c938bce4c6acd323b6b 38 - uses: gradle/gradle-build-action@v1.3.3 38 + uses: gradle/gradle-build-action@v2 39 39 with: 40 40 arguments: build 41 41 ··· 43 43 run: cp ProxyQueuesAPI/build/libs/*.jar build/libs; 44 44 45 45 - name: Upload a Build Artifact 46 - uses: actions/upload-artifact@v2.2.4 46 + uses: actions/upload-artifact@v4 47 47 with: 48 48 name: 'ProxyQueues' 49 49 path: 'build/libs/'