Skip to content

Commit

Permalink
Merge branch 'release/1.1.24'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Oct 15, 2023
2 parents 7953e71 + e758a76 commit 705d6ee
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 32 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,22 @@ jobs:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.0

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/[email protected]

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.7.0
uses: gradle/gradle-build-action@v2.9.0

# Set environment variables
- name: Export Properties
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
# Store already-built plugin as an artifact for downloading
- name: Upload artifact
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: ${{ steps.artifact.outputs.filename }}
path: ./build/distributions/content/*/*
Expand All @@ -136,18 +136,18 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.7.0
uses: gradle/gradle-build-action@v2.9.0

# Run tests
- name: Run Tests
Expand All @@ -156,7 +156,7 @@ jobs:
# Collect Tests Result of failed tests
- name: Collect Tests Result
if: ${{ failure() }}
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests
Expand All @@ -180,18 +180,18 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/[email protected].1
uses: JetBrains/[email protected].8
with:
cache-default-branch-only: true

Expand All @@ -209,22 +209,22 @@ jobs:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.7.0
uses: gradle/gradle-build-action@v2.9.0

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
Expand All @@ -236,7 +236,7 @@ jobs:
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier
Expand All @@ -254,11 +254,11 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.0
with:
fetch-depth: 0

Expand All @@ -32,7 +32,7 @@ jobs:
# Generate a changelog
- name: Generate a changelog
uses: orhun/git-cliff-action@v2.0.6
uses: orhun/git-cliff-action@v2.1.1
id: git-cliff
with:
config: cliff.toml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.0
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.7.0
uses: gradle/gradle-build-action@v2.9.0

# Publish the plugin to the Marketplace
- name: Publish Plugin
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,26 +33,26 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.7.0
uses: gradle/gradle-build-action@v2.9.0

# Run IDEA prepared for UI testing
- name: Run IDE
run: ${{ matrix.runIde }}

# Wait for IDEA to be started
- name: Health Check
uses: jtalk/url-health-check-action@v3.1
uses: jtalk/url-health-check-action@v3.2
with:
url: http://127.0.0.1:8082
max-attempts: 15
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
## [1.1.24] - 2023-10-15

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.1.23] - 2023-08-13

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginName = IntelliJ Truffle Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-truffle

# SemVer format -> https://semver.org
pluginVersion = 1.1.23
pluginVersion = 1.1.24

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
annotations = "24.0.1"

# plugins
kotlin = "1.9.0"
changelog = "2.1.2"
gradleIntelliJPlugin = "1.15.0"
kotlin = "1.9.10"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.16.0"
qodana = "0.1.13"
kover = "0.7.3"
kover = "0.7.4"

[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
Expand Down

0 comments on commit 705d6ee

Please sign in to comment.