This is an automated email from the ASF dual-hosted git repository.
ddekany pushed a commit to branch 2.3-gae
in repository https://gitbox.apache.org/repos/asf/freemarker.git
The following commit(s) were added to refs/heads/2.3-gae by this push:
new 3cca1265 Github actions: Updated even more actions
3cca1265 is described below
commit 3cca12652239a79dc465f5e2b28c1ad43967c5bb
Author: ddekany <[email protected]>
AuthorDate: Thu Sep 19 11:55:47 2024 +0200
Github actions: Updated even more actions
---
.github/workflows/ci.yml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2a6e5cf9..4da892c9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -39,27 +39,27 @@ jobs:
run: 'echo "Started with parameters: ${{ matrix.os }} because ${{
github.event_name }} on ${{ github.ref }}"'
- uses: actions/checkout@v4
- name: Set up JDK 8
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 8
distribution: temurin
- name: Set up JDK 16
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 16
distribution: zulu
- name: Set up JDK 17
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 17
distribution: oracle
- name: Validate Gradle wrapper
- uses: gradle/[email protected]
+ uses: gradle/actions/wrapper-validation@v3
- name: Run Build
id: build_step
run: './gradlew "-Pfreemarker.signMethod=none"
"-Pfreemarker.allowUnsignedReleaseBuild=true" --continue clean build'
- name: Upload Failed Report
- uses: actions/[email protected]
+ uses: actions/upload-artifact@v4
if: failure() && steps.build_step.outcome == 'failure'
with:
name: test-reports-${{ matrix.os }}