Skip to content

Commit

Permalink
Merge branch 'release/1.1.32'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed May 30, 2024
2 parents ef8f1d7 + 90bfa84 commit a9760ae
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 36 deletions.
42 changes: 21 additions & 21 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@v4.1.1
uses: actions/checkout@v4.1.6

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v2.1.1
uses: gradle/wrapper-validation-action@v3.3.2

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
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.3.2

# 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/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.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@v4.1.1
uses: actions/checkout@v4.1.6

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
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.3.2

# Run tests
- name: Run Tests
Expand All @@ -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.3.3
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.4.0
with:
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml

Expand All @@ -180,18 +180,18 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.6

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
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.1.5
with:
cache-default-branch-only: true

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

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
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.3.2

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/cache@v4.0.0
uses: actions/cache@v4.0.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/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.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@v4.1.1
uses: actions/checkout@v4.1.6

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
with:
distribution: zulu
java-version: 17
Expand All @@ -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/create-github-release@v1.0.13
uses: nekofar/create-github-release@v1.0.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
Expand Down
6 changes: 3 additions & 3 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@v4.1.1
uses: actions/checkout@v4.1.6
with:
fetch-depth: 0

Expand All @@ -32,7 +32,7 @@ jobs:
# Generate a changelog
- name: Generate a changelog
uses: orhun/git-cliff-action@v3.0.1
uses: orhun/git-cliff-action@v3.1.0
id: git-cliff
with:
config: cliff.toml
Expand All @@ -47,7 +47,7 @@ jobs:

# Create pull request
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6.0.1
uses: peter-evans/create-pull-request@v6.0.5
with:
delete-branch: true
branch-suffix: short-commit-hash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/checkout@v4.1.1
uses: actions/checkout@v4.1.6

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
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@v4.1.1
uses: actions/checkout@v4.1.6
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
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.3.2

# 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@v4.1.1
uses: actions/checkout@v4.1.6

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
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.3.2

# 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.2
uses: jtalk/url-health-check-action@v4
with:
url: http://127.0.0.1:8082
max-attempts: 15
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
## [1.1.31]] - 2024-02-29
## [1.1.32] - 2024-05-30

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.1.31] - 2024-02-29

### 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 Remix Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-remix

# SemVer format -> https://semver.org
pluginVersion = 1.1.31
pluginVersion = 1.1.32

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

# plugins
kotlin = "1.9.22"
kotlin = "1.9.24"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.17.2"
gradleIntelliJPlugin = "1.17.3"
qodana = "0.1.13"
kover = "0.7.6"

Expand Down

0 comments on commit a9760ae

Please sign in to comment.