Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha committed Jul 5, 2024
1 parent bb982d6 commit 3bf9fe9
Show file tree
Hide file tree
Showing 6 changed files with 1,508 additions and 1,029 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: |
npm install --no-package-lock --no-save eslint
npm run lint
Expand Down
16 changes: 7 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,17 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 17
node-version: 20
cache: "npm"
cache-dependency-path: package-lock.json
- name: Get release version
# VSCode doesn't support pre release versions https://github.com/microsoft/vsmarketplace/issues/50#issuecomment-990764201
run: |
echo "version=$(cat package.json | jq -r '.version')" >> $GITHUB_OUTPUT
id: version
# TypeScript set at 4.7.4 because @kubernetes/client-node 0.16.3 (and 0.17.0) breaks with version 4.8.2+
- run: npm install -g vsce [email protected] esbuild
- run: mkdir -p /tmp/vscode-ext
- run: |
npm install
Expand All @@ -33,7 +31,7 @@ jobs:
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: vsce publish ${{ steps.version.outputs.version }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: vscode-ext
path: |
Expand All @@ -50,8 +48,8 @@ jobs:
deployments: write
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: /tmp/artifacts
- uses: montudor/action-zip@v1
Expand All @@ -72,7 +70,7 @@ jobs:
if: github.event_name != 'workflow_dispatch'
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Get complete history
fetch-depth: 0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reusable_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
- name: checkout repository
if: ${{ !inputs.mirrord_release_branch }}
uses: actions/checkout@v3
uses: actions/checkout@v4

# mirrord_release_branch boolean when set, means we are on a release branch
# and hence we need to checkout into the last released tag of mirrord-vscode
- name: checkout into mirrord-vscode if mirrord_release_branch
if: ${{ inputs.mirrord_release_branch }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "metalbear-co/mirrord-vscode"

Expand All @@ -47,7 +47,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.15.x
node-version: 20
cache: npm
- name: Install dependencies
run: |
Expand All @@ -57,7 +57,7 @@ jobs:
# mirrord-artifacts and add it to the path
- name: download mirrord binary
if: ${{ inputs.mirrord_release_branch }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mirrord-artifacts
- name: add downloaded mirrord to path
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: download image
if: ${{ inputs.mirrord_release_branch }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test
path: /tmp
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
# the video starts at around ~2 minutes, before that you will see a black screen
- name: Upload video
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: video
path: out.webm
1 change: 1 addition & 0 deletions changelog.d/+dependencies_update.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump dependencies
Loading

0 comments on commit 3bf9fe9

Please sign in to comment.