Compare commits

...

7 commits

Author SHA1 Message Date
renovate[bot]
6693f8c65a
Merge e676ca2779 into 2232d07459 2024-07-22 17:12:07 +00:00
mergify[bot]
2232d07459
Merge pull request #105 from 0x61nas/dependabot/github_actions/actions/cache-4.0.0
Bump actions/cache from 3.3.2 to 4.0.0
2024-01-21 11:44:48 +00:00
mergify[bot]
a3717dc9db
Merge pull request #106 from 0x61nas/dependabot/github_actions/actions/upload-artifact-4.2.0
Bump actions/upload-artifact from 3.1.3 to 4.2.0
2024-01-21 11:44:17 +00:00
mergify[bot]
6cd67f5391
Merge pull request #107 from 0x61nas/dependabot/gradle/org.jetbrains.intellij-1.17.0
Bump org.jetbrains.intellij from 1.16.0 to 1.17.0
2024-01-21 11:43:44 +00:00
dependabot[bot]
1ff58bff5b
Bump org.jetbrains.intellij from 1.16.0 to 1.17.0
Bumps org.jetbrains.intellij from 1.16.0 to 1.17.0.

---
updated-dependencies:
- dependency-name: org.jetbrains.intellij
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-18 21:41:36 +00:00
dependabot[bot]
7b1d8c5cb4
Bump actions/upload-artifact from 3.1.3 to 4.2.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.2.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3.1.3...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-18 21:04:46 +00:00
dependabot[bot]
468e273bfe
Bump actions/cache from 3.3.2 to 4.0.0
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.3.2...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-17 21:47:13 +00:00
3 changed files with 11 additions and 11 deletions

View file

@ -48,13 +48,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Gradle Dependencies Cache - name: Setup Gradle Dependencies Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/caches path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }} key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
- name: Setup Gradle Wrapper Cache - name: Setup Gradle Wrapper Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/wrapper path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
@ -87,13 +87,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Gradle Dependencies Cache - name: Setup Gradle Dependencies Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/caches path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }} key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
- name: Setup Gradle Wrapper Cache - name: Setup Gradle Wrapper Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/wrapper path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
@ -116,7 +116,7 @@ jobs:
# Upload plugin artifact to make it available in the next jobs # Upload plugin artifact to make it available in the next jobs
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3.1.3 uses: actions/upload-artifact@v4.2.0
with: with:
name: plugin-artifact name: plugin-artifact
path: ./build/distributions/${{ needs.build.outputs.artifact }} path: ./build/distributions/${{ needs.build.outputs.artifact }}
@ -139,13 +139,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Gradle Dependencies Cache - name: Setup Gradle Dependencies Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/caches path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }} key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
- name: Setup Gradle Wrapper Cache - name: Setup Gradle Wrapper Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/wrapper path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
@ -163,7 +163,7 @@ jobs:
# Cache Plugin Verifier IDEs # Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache - name: Setup Plugin Verifier IDEs Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
key: ${{ runner.os }}-plugin-verifier-${{ steps.properties.outputs.ideVersions }} key: ${{ runner.os }}-plugin-verifier-${{ steps.properties.outputs.ideVersions }}

View file

@ -46,13 +46,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Gradle Dependencies Cache - name: Setup Gradle Dependencies Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/caches path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
- name: Setup Gradle Wrapper Cache - name: Setup Gradle Wrapper Cache
uses: actions/cache@v3.3.2 uses: actions/cache@v4.0.0
with: with:
path: ~/.gradle/wrapper path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

View file

@ -5,7 +5,7 @@ fun properties(key: String) = project.findProperty(key).toString()
plugins { plugins {
id("java") id("java")
id("org.jetbrains.intellij") version "1.16.0" id("org.jetbrains.intellij") version "1.17.0"
id("org.jetbrains.changelog") version "2.2.0" id("org.jetbrains.changelog") version "2.2.0"
} }