Skip to content

Commit

Permalink
ci(github): v4 actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEdoRan committed Jan 2, 2024
1 parent b2c5b14 commit 97e5db8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run lint -- --filter=next-safe-action
Expand All @@ -31,13 +31,13 @@ jobs:
runs-on: ubuntu-latest
needs: [CI]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run build -- --filter=next-safe-action
Expand Down

0 comments on commit 97e5db8

Please sign in to comment.