-
-
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
9 changed files
with
41 additions
and
35 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 |
---|---|---|
|
@@ -57,22 +57,22 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# Validate wrapper | ||
- name: Gradle Wrapper Validation | ||
uses: gradle/actions/wrapper-validation@v4.1.0 | ||
uses: gradle/actions/wrapper-validation@v4.2.1 | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4.1.0 | ||
uses: gradle/actions/setup-gradle@v4.2.1 | ||
|
||
# Set environment variables | ||
- name: Export Properties | ||
|
@@ -119,7 +119,7 @@ jobs: | |
# Store already-built plugin as an artifact for downloading | ||
- name: Upload artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: ${{ steps.artifact.outputs.filename }} | ||
path: ./build/distributions/content/*/* | ||
|
@@ -133,18 +133,18 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4.1.0 | ||
uses: gradle/actions/setup-gradle@v4.2.1 | ||
|
||
# Run tests | ||
- name: Run Tests | ||
|
@@ -153,14 +153,14 @@ jobs: | |
# Collect Tests Result of failed tests | ||
- name: Collect Tests Result | ||
if: ${{ failure() }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: tests-result | ||
path: ${{ github.workspace }}/build/reports/tests | ||
|
||
# Upload the Kover report to CodeCov | ||
- name: Upload Code Coverage Report | ||
uses: codecov/codecov-action@v4.6.0 | ||
uses: codecov/codecov-action@v5.1.1 | ||
with: | ||
files: ${{ github.workspace }}/build/reports/kover/report.xml | ||
|
||
|
@@ -184,21 +184,21 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit | ||
fetch-depth: 0 # a full history is required for pull request analysis | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Run Qodana inspections | ||
- name: Qodana - Code Inspection | ||
uses: JetBrains/[email protected].3 | ||
uses: JetBrains/[email protected].6 | ||
with: | ||
cache-default-branch-only: true | ||
|
||
|
@@ -218,22 +218,22 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4.1.0 | ||
uses: gradle/actions/setup-gradle@v4.2.1 | ||
|
||
# Cache Plugin Verifier IDEs | ||
- name: Setup Plugin Verifier IDEs Cache | ||
uses: actions/cache@v4.1.0 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides | ||
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} | ||
|
@@ -245,7 +245,7 @@ jobs: | |
# Collect Plugin Verifier Result | ||
- name: Collect Plugin Verifier Result | ||
if: ${{ always() }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: pluginVerifier-result | ||
path: ${{ github.workspace }}/build/reports/pluginVerifier | ||
|
@@ -263,7 +263,7 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# Remove old release drafts by using the curl request for the available releases with a draft flag | ||
- name: Remove Old Release Drafts | ||
|
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 |
---|---|---|
|
@@ -16,20 +16,20 @@ jobs: | |
|
||
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4.1.0 | ||
uses: gradle/actions/setup-gradle@v4.2.1 | ||
|
||
# Set environment variables | ||
- name: Export Properties | ||
|
@@ -43,7 +43,7 @@ jobs: | |
# Generate a changelog | ||
- name: Generate a changelog | ||
uses: orhun/git-cliff-action@v4.3.0 | ||
uses: orhun/git-cliff-action@v4.4.2 | ||
id: git-cliff | ||
with: | ||
config: cliff.toml | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
steps: | ||
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it | ||
- name: Checkout Repository Code | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# This step uses the Git Flow Action to create PRs based on branch types | ||
- name: Execute Git Flow Action | ||
|
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 |
---|---|---|
|
@@ -20,20 +20,20 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
ref: ${{ github.event.release.tag_name }} | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4.1.0 | ||
uses: gradle/actions/setup-gradle@v4.2.1 | ||
|
||
# Publish the plugin to JetBrains Marketplace | ||
- name: Publish Plugin | ||
|
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 |
---|---|---|
|
@@ -33,18 +33,18 @@ jobs: | |
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4.1.0 | ||
uses: gradle/actions/setup-gradle@v4.2.1 | ||
|
||
# Run IDEA prepared for UI testing | ||
- name: Run IDE | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
rootProject.name = "intellij-hardhat" | ||
|
||
plugins { | ||
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" | ||
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0" | ||
} |