Skip to content

Commit

Permalink
chore: up gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo authored Nov 12, 2024
1 parent 04dfb49 commit 7098be9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
Expand All @@ -33,7 +33,7 @@ jobs:
run: yarn build

- name: Archive dist components
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build
path: dist/
Expand All @@ -44,15 +44,15 @@ jobs:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: lts/*

- name: Download dist from build job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build
path: dist
Expand Down

0 comments on commit 7098be9

Please sign in to comment.