Skip to content

Commit

Permalink
Merge pull request #422 from kac89/dev
Browse files Browse the repository at this point in the history
actions update
  • Loading branch information
kac89 authored Sep 6, 2024
2 parents c7729b4 + 6f3ab64 commit d4b13f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev.vulnrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: cmd add version
Expand All @@ -31,7 +31,7 @@ jobs:
npm run build -- -c production
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: deploy_dist
path: dist
Expand All @@ -41,14 +41,14 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
token: ${{ secrets.TOKEN }}

- name: Download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: deploy_dist
path: .
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/vulnrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: cmd add version
Expand All @@ -31,7 +31,7 @@ jobs:
npm run build -- -c production
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: deploy_dist
path: dist
Expand All @@ -41,14 +41,14 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
token: ${{ secrets.TOKEN }}

- name: Download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: deploy_dist
path: .
Expand Down

0 comments on commit d4b13f2

Please sign in to comment.