-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
42 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,22 +58,22 @@ jobs: | |
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/checkout@v3.5.2 | ||
uses: actions/checkout@v4.2.0 | ||
|
||
# Validate wrapper | ||
- name: Gradle Wrapper Validation | ||
uses: gradle/wrapper-validation-action@v2.1.1 | ||
uses: gradle/wrapper-validation-action@v3.5.0 | ||
|
||
# Setup Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.0.0 | ||
uses: actions/setup-java@v4.4.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v3.1.0 | ||
uses: gradle/gradle-build-action@v3.5.0 | ||
|
||
# Set environment variables | ||
- name: Export Properties | ||
|
@@ -122,7 +122,7 @@ jobs: | |
# Store already-built plugin as an artifact for downloading | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4.3.1 | ||
uses: actions/upload-artifact@v4.4.0 | ||
with: | ||
name: ${{ steps.artifact.outputs.filename }} | ||
path: ./build/distributions/content/*/* | ||
|
@@ -136,18 +136,18 @@ jobs: | |
|
||
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.2.0 | ||
|
||
# Setup Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.0.0 | ||
uses: actions/setup-java@v4.4.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v3.1.0 | ||
uses: gradle/gradle-build-action@v3.5.0 | ||
|
||
# Run tests | ||
- name: Run Tests | ||
|
@@ -156,14 +156,14 @@ jobs: | |
# Collect Tests Result of failed tests | ||
- name: Collect Tests Result | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v4.3.1 | ||
uses: actions/upload-artifact@v4.4.0 | ||
with: | ||
name: tests-result | ||
path: ${{ github.workspace }}/build/reports/tests | ||
|
||
# Upload Kover report to CodeCov | ||
- name: Upload Code Coverage Report | ||
uses: codecov/codecov-action@v4.1.0 | ||
uses: codecov/codecov-action@v4.6.0 | ||
with: | ||
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml | ||
|
||
|
@@ -180,18 +180,18 @@ jobs: | |
|
||
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.2.0 | ||
|
||
# Setup Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.0.0 | ||
uses: actions/setup-java@v4.4.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Run Qodana inspections | ||
- name: Qodana - Code Inspection | ||
uses: JetBrains/qodana-action@v2023.3.1 | ||
uses: JetBrains/qodana-action@v2024.2.3 | ||
with: | ||
cache-default-branch-only: true | ||
|
||
|
@@ -209,22 +209,22 @@ jobs: | |
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.2.0 | ||
|
||
# Setup Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.0.0 | ||
uses: actions/setup-java@v4.4.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v3.1.0 | ||
uses: gradle/gradle-build-action@v3.5.0 | ||
|
||
# Cache Plugin Verifier IDEs | ||
- name: Setup Plugin Verifier IDEs Cache | ||
uses: actions/cache@v4.0.0 | ||
uses: actions/cache@v4.1.0 | ||
with: | ||
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides | ||
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} | ||
|
@@ -236,7 +236,7 @@ jobs: | |
# Collect Plugin Verifier Result | ||
- name: Collect Plugin Verifier Result | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v4.3.1 | ||
uses: actions/upload-artifact@v4.4.0 | ||
with: | ||
name: pluginVerifier-result | ||
path: ${{ github.workspace }}/build/reports/pluginVerifier | ||
|
@@ -254,11 +254,11 @@ jobs: | |
|
||
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.2.0 | ||
|
||
# Setup Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.0.0 | ||
uses: actions/setup-java@v4.4.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
@@ -274,7 +274,7 @@ jobs: | |
# Create a new release draft which is not publicly visible and requires manual acceptance | ||
- name: Create Release Draft | ||
uses: nekofar/[email protected].13 | ||
uses: nekofar/[email protected].14 | ||
with: | ||
tag: v${{ needs.build.outputs.version }} # The name of the tag to be released | ||
title: v${{ needs.build.outputs.version }} # The title for the release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters