Skip to content

Commit

Permalink
bump gh action versions to latest (#134)
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Reinecke <[email protected]>
  • Loading branch information
jreineckearm authored Jan 17, 2025
1 parent 322a474 commit 1d87480
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Build
run: |
yarn install --ignore-scripts
yarn build
yarn vsce:package
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: vsix-package
path: ./*.vsix
Expand All @@ -41,11 +41,11 @@ jobs:
contents: write
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v2
with:
files: artifacts/*/*.vsix

Expand All @@ -55,11 +55,11 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Publish
Expand All @@ -72,11 +72,11 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Publish
Expand Down

0 comments on commit 1d87480

Please sign in to comment.