Skip to content

Commit 66ab0c8

Browse files
authored
Deploy official v0.31.0 (#7199)
* chore: update workflows * website updates * deploment updates
1 parent 11f3f20 commit 66ab0c8

File tree

7 files changed

+169
-101
lines changed

7 files changed

+169
-101
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: echo ${{ github.event.number }} > PR_NUMBER.txt
1818
- name: Archive PR number
1919
if: github.event_name == 'pull_request'
20-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
20+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
2121
with:
2222
name: PR_NUMBER
2323
path: PR_NUMBER.txt

.github/workflows/smoketest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: steps.check_version.outputs.is_version == 'true'
5151
working-directory: ./openvsx/webui
5252
run: yarn smoke-tests
53-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
53+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5454
if: steps.check_version.outputs.is_version == 'true'
5555
with:
5656
name: playwright-report

.github/workflows/sonar.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: mkdir -p ${{ runner.temp }}/artifacts
1616
- name: Download PR number artifact
1717
if: github.event.workflow_run.event == 'pull_request'
18-
uses: dawidd6/action-download-artifact@ac66b43f0e6a346234dd65d4d0c8fbb31cb316e5 # v11
18+
uses: dawidd6/action-download-artifact@0bd50d53a6d7fb5cb921e607957e9cc12b4ce392 # v12
1919
with:
2020
workflow: Build
2121
run_id: ${{ github.event.workflow_run.id }}
@@ -59,7 +59,7 @@ jobs:
5959
git clean -ffdx && git reset --hard HEAD
6060
- name: SonarCloud Scan on PR
6161
if: github.event.workflow_run.event == 'pull_request'
62-
uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v6.0.0
62+
uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 # v7.0.0
6363
env:
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6565
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -71,7 +71,7 @@ jobs:
7171
-Dsonar.pullrequest.base=${{ fromJson(steps.get_pr_data.outputs.data).base.ref }}
7272
- name: SonarCloud Scan on push
7373
if: github.event.workflow_run.event == 'push' && github.event.workflow_run.head_repository.full_name == github.event.repository.full_name
74-
uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v6.0.0
74+
uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 # v7.0.0
7575
env:
7676
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG SERVER_VERSION=e9908e2
1+
ARG SERVER_VERSION=v0.31.0
22
ARG SERVER_VERSION_STRING=v0.31.0
33

44
# Builder image to compile the website
@@ -20,7 +20,6 @@ RUN apt-get update \
2020
&& corepack prepare yarn@stable --activate
2121

2222
# bump to update website
23-
ENV WEBSITE_VERSION 0.17.0
2423
COPY . /workdir
2524

2625
RUN /usr/bin/yarn --cwd website \

website/.yarnrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
enableScripts: false
2+
13
compressionLevel: mixed
24

35
enableGlobalCache: false

website/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"repository": "https://github.com/eclipse/open-vsx.org",
77
"license": "EPL-2.0",
88
"dependencies": {
9-
"openvsx-webui": "0.17.0"
9+
"openvsx-webui": "0.17.1"
10+
},
11+
"resolutions": {
12+
"qs": "^6.14.1"
1013
},
1114
"devDependencies": {
1215
"@types/markdown-it": "^12.2.3",

0 commit comments

Comments
 (0)