Skip to content

Commit

Permalink
ci: updated actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiftwork committed Jun 3, 2024
1 parent a8aed47 commit 88c0fef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Check out source code
uses: actions/checkout@v2-beta
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -23,9 +23,10 @@ jobs:
git config --global user.email "action@github.com"
- name: Set up Node.js version 20.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'

- name: Install dependencies
run: yarn --immutable
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ jobs:

steps:
- name: Check out source code
uses: actions/checkout@v2-beta
uses: actions/checkout@v4

- name: Set up Node.js version ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'

- name: Install dependencies using CI
run: yarn --immutable
Expand Down

0 comments on commit 88c0fef

Please sign in to comment.