Skip to content

Commit

Permalink
Merge pull request #427 from viperproject/dependabot/github_actions/a…
Browse files Browse the repository at this point in the history
…ll-369b5505d0

Bump the all group with 7 updates
  • Loading branch information
rayman2000 authored Jan 25, 2024
2 parents 8dbfc7b + 38d890d commit 654a81a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
mkdir ViperToolsMacARM
- name: Clone ViperTools template
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: viperproject/viper-ide-deps
ref: ${{ env.VIPER_IDE_DEPS_REF }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
working-directory: ViperToolsMacARM

- name: Upload ViperTools zip files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ViperTools
path: deploy
Expand All @@ -187,22 +187,22 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Viper-IDE
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16' # we use latest node instead of LTS 14 to have the same lockfile version as locally used

- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- run: java --version

- name: Cache npm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: client/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -226,7 +226,7 @@ jobs:
# nightly ViperTool releases AND the ViperTools that should be released.
- name: Download ViperTools to test against (only downloading previously created ViperTools)
if: ${{ contains(needs.create-viper-tools.result, 'success') }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ViperTools
path: client/ViperTools
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:

- name: Upload Viper-IDE log files
if: ${{ failure() || cancelled() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: TestLogs-${{ matrix.os }}
path: client/logs
Expand Down Expand Up @@ -352,7 +352,7 @@ jobs:

- name: Upload packaged Viper-IDE (ubuntu-only)
if: startsWith(matrix.os, 'ubuntu')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: viper-ide.vsix
path: client/viper-ide.vsix
Expand All @@ -370,16 +370,16 @@ jobs:
steps:
# we have to checkout the repo to read client/package.json later on:
- name: Checkout Viper-IDE
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download packaged Viper IDE
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: viper-ide.vsix
path: client

- name: Download ViperTools
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ViperTools
path: deploy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-vscode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update VS Code version used by the tests
run: |
Expand All @@ -32,7 +32,7 @@ jobs:
echo "TEST_VSCODE_VERSION=$TEST_VSCODE_VERSION" >> $GITHUB_ENV
echo "LATEST_VSCODE_VERSION=$LATEST_VSCODE_VERSION" >> $GITHUB_ENV
- name: Open a pull request
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v5
if: env.TEST_VSCODE_VERSION != env.LATEST_VSCODE_VERSION
with:
# Use viper-admin's token to workaround a restriction of GitHub.
Expand Down

0 comments on commit 654a81a

Please sign in to comment.