Skip to content

Commit aa9fa07

Browse files
committed
workflows/readme
1 parent 5e37a42 commit aa9fa07

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v2
20-
- name: Set up JDK 17
20+
- name: Set up JDK 21
2121
uses: actions/setup-java@v1
2222
with:
23-
java-version: 17
23+
java-version: 21
2424
- name: Grant execute permission for gradlew
2525
run: chmod +x gradlew
2626
- name: Build with Gradle

.github/workflows/prerelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
generate_artifact_toolkit_standalone:
1515
strategy:
1616
matrix:
17-
supported_versions: [ '2023.3', '2024.1', '2024.2' ]
17+
supported_versions: [ '2023.3', '2024.1', '2024.2', '2024.3' ]
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
generate_artifact_q:
4747
strategy:
4848
matrix:
49-
supported_versions: [ '2023.3', '2024.1', '2024.2' ]
49+
supported_versions: [ '2023.3', '2024.1', '2024.2', '2024.3' ]
5050
runs-on: ubuntu-latest
5151
steps:
5252
- uses: actions/checkout@v4
@@ -75,7 +75,7 @@ jobs:
7575
generate_artifact_core:
7676
strategy:
7777
matrix:
78-
supported_versions: [ '2023.3', '2024.1', '2024.2' ]
78+
supported_versions: [ '2023.3', '2024.1', '2024.2', '2024.3' ]
7979
runs-on: ubuntu-latest
8080
steps:
8181
- uses: actions/checkout@v4

.github/workflows/qodana-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
tool-cache: false
3434
large-packages: false
3535
- name: 'Qodana Scan'
36-
uses: JetBrains/qodana-action@v2024.1.9
36+
uses: JetBrains/qodana-action@v2024.2.3
3737
env:
3838
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
3939
with:

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ reported the issue. Please try to include as much information as you can. Detail
2222

2323
### Requirements
2424

25-
* [Java 17](https://docs.aws.amazon.com/corretto/latest/corretto-17-ug/downloads-list.html)
25+
* [Java 21](https://docs.aws.amazon.com/corretto/latest/corretto-21-ug/downloads-list.html)
2626
* [Git](https://git-scm.com/)
2727
* .NET 6
2828
* In theory, you can use a higher version, however we build with .NET 6 in CI
@@ -35,7 +35,7 @@ reported the issue. Please try to include as much information as you can. Detail
3535
### Instructions
3636
3737
1. Clone the github repository.
38-
2. To manually build a plugin distribution, run the `buildPlugin` task on the relevant Gradle project.
38+
2. To manually build a plugin distribution, run the global task, `./gradlew buildPlugin` to build all plugins, or on specific subproject if you want a specific plugin
3939
- For example, `./gradlew :plugin-toolkit:intellij-standalone:buildPlugin` will produce a plugin zip under `plugins/toolkit/intellij-standalone/build/distributions`.
4040
- You can also run the `:plugin-core:buildPlugin` and `:plugin-amazonq:buildPlugin` tasks
4141
- Use the `-PideProfileName={JETBRAINS_VERSION}` option to build the plugin for a particular IDE version (e.g `./gradlew :plugin-toolkit:intellij-standalone:buildPlugin -PideProfileName=2024.1`)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We want your feedback!
2323
- Code contributions. See [our contributing guide](CONTRIBUTING.md) for how to get started.
2424

2525
## Supported IDEs
26-
All JetBrains IDEs 2023.2+
26+
All JetBrains IDEs 2023.3+
2727

2828
## Installation
2929

0 commit comments

Comments
 (0)