Skip to content

Commit

Permalink
Upgrade GitHub actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
joedevivo committed Dec 31, 2023
1 parent e6ece85 commit 877f8fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
npm_config_arch: arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 18
cache: "npm"
- uses: actions/setup-python@v5
with:
Expand All @@ -57,7 +57,7 @@ jobs:
run: echo "target=${{ matrix.platform }}-${{ matrix.arch }}" >> $env:GITHUB_ENV
- name: Build Package
run: npx vsce package --target ${{ env.target }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ env.target }}
path: "*.vsix"
Expand All @@ -67,7 +67,7 @@ jobs:
needs: build
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
- run: npx vsce publish --packagePath $(find . -iname *.vsix)
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
Expand Down

0 comments on commit 877f8fe

Please sign in to comment.