Skip to content

Commit

Permalink
bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jun 1, 2024
1 parent 10895d4 commit 8eee6a1
Show file tree
Hide file tree
Showing 3 changed files with 286 additions and 64 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
environment: deploy
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js πŸ˜‚
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install and Build πŸ”§
run: |
npm ci
npm i
npm run build-ci
- name: Deploy πŸš€
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ”πŸŸπŸ₯€
uses: actions/checkout@v2.3.1
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Use Node.js πŸ˜‚
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '18.x'

- name: Test πŸ§ͺ
run: |
npm ci
npm i
npm run check-ci
Loading

0 comments on commit 8eee6a1

Please sign in to comment.