Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Cache vscode downloads
id: cache-vscode
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ./rascal-vscode-extension/uitests
key: "vscode-${{matrix.os}}"
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npx extest setup-and-run out/test/vscode-suite/*.test.js --storage uitests

- name: Upload Screenshots
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: failure()
with:
name: screenshots-${{ matrix.os }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
npx vsce package

- name: upload final vsix
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
path: rascal-vscode-extension/*.vsix
retention-days: 20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
distribution: 'temurin'
cache: 'maven'
- name: Cache SonarCloud packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
Expand Down
Loading