Skip to content

Commit 9b7dc83

Browse files
committed
Merge branch 'main' into doc-build-and-release
2 parents b77c9af + 4c159ba commit 9b7dc83

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434

3535
# Check out current repository
3636
- name: Fetch Sources
37-
uses: actions/checkout@v2.4.0
37+
uses: actions/checkout@v3.0.2
3838

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

4343
# Setup Java 11 environment for the next steps
4444
- name: Setup Java
45-
uses: actions/setup-java@v2
45+
uses: actions/setup-java@v3
4646
with:
4747
distribution: zulu
4848
java-version: 11
@@ -72,7 +72,7 @@ jobs:
7272
# Collect Tests Result of failed tests
7373
- name: Collect Tests Result
7474
if: ${{ failure() }}
75-
uses: actions/upload-artifact@v2
75+
uses: actions/upload-artifact@v3
7676
with:
7777
name: tests-result
7878
path: ${{ github.workspace }}/build/reports/tests
@@ -97,7 +97,7 @@ jobs:
9797
# # Collect Plugin Verifier Result
9898
# - name: Collect Plugin Verifier Result
9999
# if: ${{ always() }}
100-
# uses: actions/upload-artifact@v2
100+
# uses: actions/upload-artifact@v3
101101
# with:
102102
# name: pluginVerifier-result
103103
# path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -117,7 +117,7 @@ jobs:
117117
echo "::set-output name=filename::${FILENAME:0:-4}"
118118
# Store already-built plugin as an artifact for downloading
119119
- name: Upload artifact
120-
uses: actions/upload-artifact@v2.2.4
120+
uses: actions/upload-artifact@v3
121121
with:
122122
name: ${{ steps.artifact.outputs.filename }}
123123
path: ./build/distributions/content/*/*

qodana.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Qodana configuration:
2+
# https://www.jetbrains.com/help/qodana/qodana-yaml.html
3+
4+
version: 1.0
5+
profile:
6+
name: qodana.recommended

0 commit comments

Comments
 (0)