Skip to content

Commit 67e5eb7

Browse files
committed
GitHub Actions workflows update
1 parent a1e57f2 commit 67e5eb7

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383

8484
# Cache Plugin Verifier IDEs
8585
- name: Setup Plugin Verifier IDEs Cache
86-
uses: actions/cache@v2.1.6
86+
uses: actions/cache@v3
8787
with:
8888
path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
8989
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -102,14 +102,7 @@ jobs:
102102

103103
# Run Qodana inspections
104104
- name: Qodana - Code Inspection
105-
uses: JetBrains/qodana-action@v2.1-eap
106-
107-
# Collect Qodana Result
108-
- name: Collect Qodana Result
109-
uses: actions/upload-artifact@v2
110-
with:
111-
name: qodana-result
112-
path: ${{ github.workspace }}/qodana
105+
uses: JetBrains/qodana-action@v5.0.2
113106

114107
# Prepare plugin archive content for creating artifact
115108
- name: Prepare Plugin Artifact
@@ -120,7 +113,7 @@ jobs:
120113
FILENAME=`ls *.zip`
121114
unzip "$FILENAME" -d content
122115
123-
echo "::set-output name=filename::$FILENAME"
116+
echo "::set-output name=filename::${FILENAME:0:-4}"
124117
125118
# Store already-built plugin as an artifact for downloading
126119
- name: Upload artifact
@@ -140,7 +133,7 @@ jobs:
140133

141134
# Check out current repository
142135
- name: Fetch Sources
143-
uses: actions/checkout@v2.4.0
136+
uses: actions/checkout@v3
144137

145138
# Remove old release drafts by using the curl request for the available releases with draft flag
146139
- name: Remove Old Release Drafts

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
# Check out current repository
1818
- name: Fetch Sources
19-
uses: actions/checkout@v2.4.0
19+
uses: actions/checkout@v3
2020
with:
2121
ref: ${{ github.event.release.tag_name }}
2222

0 commit comments

Comments
 (0)