Skip to content

Commit d7b3766

Browse files
committed
Merge branch 'main' into impl-support-customizing-dashboard-url
2 parents 912fbef + 947be1c commit d7b3766

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
# Collect Tests Result of failed tests
3737
- if: ${{ failure() }}
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
with:
4040
name: tests-result
4141
path: ${{ github.workspace }}/build/reports/tests
@@ -79,13 +79,13 @@ jobs:
7979

8080
# Store already-built plugin as an artifact for downloading
8181
- name: Upload artifact
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: zip-artifacts
8585
path: ./build/distributions/*.zip
8686

8787
- name: Upload Release Notes
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v5
8989
with:
9090
name: release-notes
9191
path: RELEASE_NOTES.md
@@ -113,15 +113,15 @@ jobs:
113113
| xargs -I '{}' gh api -X DELETE repos/${{ github.repository }}/releases/{}
114114
115115
- name: Download Build Artifacts
116-
uses: actions/download-artifact@v5
116+
uses: actions/download-artifact@v6
117117
with:
118118
name: zip-artifacts
119119
path: artifacts/
120120
- name: Display the Zip files that are going to be attached
121121
run: ls -R artifacts/
122122

123123
- name: Download Release Notes
124-
uses: actions/download-artifact@v5
124+
uses: actions/download-artifact@v6
125125
with:
126126
name: release-notes
127127
path: notes/

.github/workflows/jetbrains-compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
./gradlew detekt
4141
4242
- name: Upload detekt reports
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
if: always()
4545
with:
4646
name: detekt-reports

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ksp = "2.1.20-2.0.1"
1313
retrofit = "3.0.0"
1414
changelog = "2.4.0"
1515
gettext = "0.7.0"
16-
plugin-structure = "3.316"
16+
plugin-structure = "3.318"
1717
mockk = "1.14.6"
1818
detekt = "1.23.8"
1919
bouncycastle = "1.82"

0 commit comments

Comments
 (0)