Skip to content

Commit

Permalink
⬆️ Bump GitHub workflows dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Mar 25, 2022
1 parent 9f3c579 commit 1ea14a0
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set Node.js 12.x
uses: actions/setup-node@v2.5.1
with:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
cd scan
npm install
Expand All @@ -49,7 +49,7 @@ jobs:
test-ubuntu: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
with:
args: --linter,jetbrains/qodana-js
Expand All @@ -58,7 +58,7 @@ jobs:
# test-windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v3
# - uses: ./
# with:
# linter: jetbrains/qodana-js
4 changes: 2 additions & 2 deletions .github/workflows/vsts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cd common && npm ci && cd ../vsts && npm install && npm run build
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set Node.js 12.x
uses: actions/setup-node@v2.5.1
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@experimental
```
Expand Down
80 changes: 80 additions & 0 deletions vsts/vss-extension.dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"manifestVersion": 1,
"id": "qodana",
"name": "Qodana",
"version": "1.0.2",
"publisher": "JetBrains",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Scan your project with Qodana (https://jetbrains.com/qodana)",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "qodana.png"
},
"branding": {
"color": "rgb(243, 243, 243)",
"theme": "light"
},
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"tags": [
"build",
"ci",
"static code analysis",
"continuous integration",
"code quality",
"static analysis",
"code inspections"
],
"links": {
"home": {
"uri": "https://jetbrains.com/qodana"
},
"getstarted": {
"uri": "https://jetbrains.com/qodana/help"
},
"support": {
"uri": "mailto:qodana-support@jetbrains.com"
},
"privacypolicy": {
"uri": "https://www.jetbrains.com/legal/docs/privacy/privacy/"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/JetBrains/qodana-action"
},
"files": [
{
"path": "QodanaScan"
}
],
"scopes": [
"vso.build",
"vso.code",
"vso.test"
],
"contributions": [
{
"id": "QodanaScan",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "QodanaScan"
}
}
]
}

0 comments on commit 1ea14a0

Please sign in to comment.