Skip to content

Commit

Permalink
Bump versions of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dacort committed Apr 24, 2023
1 parent 0a2010f commit 0617a55
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
tag: ${{ steps.setup-tag.outputs.tag }}
version: ${{ steps.setup-tag.outputs.version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
Expand All @@ -47,7 +47,7 @@ jobs:
run: |
npx vsce package --out ${{ steps.setup.outputs.packageName }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: ${{ steps.setup.outputs.packageName }}
path: ./${{ steps.setup.outputs.packageName }}
Expand All @@ -68,8 +68,8 @@ jobs:
needs: package
if: github.event.inputs.publishMS == 'true'
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: ${{ needs.package.outputs.packageName }}
- name: Publish to VS marketplace
Expand All @@ -81,8 +81,8 @@ jobs:
needs: package
if: github.event.inputs.publishOVSX == 'true'
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: ${{ needs.package.outputs.packageName }}
- name: Publish to Open VSX
Expand All @@ -96,7 +96,7 @@ jobs:
needs: package
if: github.event.inputs.publishGH == 'true'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: ${{ needs.package.outputs.packageName }}

Expand Down

0 comments on commit 0617a55

Please sign in to comment.