Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2 to 4 (Deducteam#1063)
Browse files Browse the repository at this point in the history
* Bump actions/upload-artifact from 2 to 4

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix Dependabot/GitHub actions/actions/upload artifact 4 (Deducteam#1065)

* fix/pipeline/vscode : use a dedicated job to generate the vscode extension

* feat/pipeline/vscode : use nodejs version 20 instead of 16

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alidra <[email protected]>
  • Loading branch information
dependabot[bot] and Alidra authored Mar 6, 2024
1 parent 9aa06c8 commit 0822848
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
workflow_dispatch:
jobs:
build:
build_lambdapi:
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -34,6 +34,13 @@ jobs:
eval $(opam env)
#why3 config detect
make tests
build_vscode_extension:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: checking out lambdapi repo ...
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -44,7 +51,7 @@ jobs:
npm install -g vsce
make build-vscode-extension
- name: publish vscode extension
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: assets-for-download
path: editors/vscode/extensionFolder

0 comments on commit 0822848

Please sign in to comment.