Skip to content

Commit

Permalink
update versions on actions/setup-node and actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
mikestarrdev committed Aug 19, 2024
1 parent 8822ddb commit 8db10b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20

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

- name: Install and Build
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test using Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn
Expand Down

0 comments on commit 8db10b0

Please sign in to comment.