Skip to content

Commit

Permalink
bump setup-node and setup-python actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgraham4401 committed Sep 7, 2024
1 parent 239fde7 commit 8ae8a90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint_client.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Lint Client'
name: "Lint Client"

on:
push:
Expand All @@ -19,11 +19,11 @@ jobs:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
cache: "npm"
cache-dependency-path: "**/package-lock.json"

- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v4

- name: "Setup Node"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
uses: actions/checkout@v4

- name: "Setup Node"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
cache: "pip"
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 8ae8a90

Please sign in to comment.