Skip to content

Commit

Permalink
Merge branch 'release/2.0.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Oct 5, 2024
2 parents 434b859 + 03ee899 commit 6515e0a
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 33 deletions.
38 changes: 19 additions & 19 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.7
uses: actions/checkout@v4.2.0

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

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.4.2
uses: gradle/gradle-build-action@v3.5.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/upload-artifact@v4.3.3
uses: actions/upload-artifact@v4.4.0
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.7
uses: actions/checkout@v4.2.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.4.2
uses: gradle/gradle-build-action@v3.5.0

# 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.3
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.5.0
uses: codecov/codecov-action@v4.6.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.7
uses: actions/checkout@v4.2.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2024.1.8
uses: JetBrains/qodana-action@v2024.2.3
with:
cache-default-branch-only: true

Expand All @@ -209,18 +209,18 @@ jobs:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.4.2
uses: gradle/gradle-build-action@v3.5.0

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
Expand All @@ -236,7 +236,7 @@ jobs:
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/upload-artifact@v4.3.3
uses: actions/upload-artifact@v4.4.0
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.7
uses: actions/checkout@v4.2.0

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17
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.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0

Expand All @@ -32,7 +32,7 @@ jobs:
# Generate a changelog
- name: Generate a changelog
uses: orhun/git-cliff-action@v3.2.0
uses: orhun/git-cliff-action@v4.3.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.1.0
uses: peter-evans/create-pull-request@v7.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.7
uses: actions/checkout@v4.2.0

# 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.7
uses: actions/checkout@v4.2.0
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.4.2
uses: gradle/gradle-build-action@v3.5.0

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

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

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.4.2
uses: gradle/gradle-build-action@v3.5.0

# Run IDEA prepared for UI testing
- name: Run IDE
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]
## [2.0.14] - 2024-10-05

### Bug Fixes

- Solve some minor issues and update dependencies

## [2.0.13] - 2024-07-07

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

# SemVer format -> https://semver.org
pluginVersion = 2.0.13
pluginVersion = 2.0.14

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

# plugins
kotlin = "1.9.23"
kotlin = "2.0.20"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.17.3"
gradleIntelliJPlugin = "1.17.4"
qodana = "0.1.13"
kover = "0.7.6"

Expand Down

0 comments on commit 6515e0a

Please sign in to comment.