Skip to content

Commit ce985f8

Browse files
committed
Activates dependency caching for Python and JS suite actions
1 parent 11dfb5d commit ce985f8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/javascript-suites.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: "lts/Hydrogen"
21+
cache: 'npm'
2122
- name: Run JSON RFC Tests
2223
run: |
2324
node rosetta-test-js/json-rfc.js

.github/workflows/python-suites.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python 3.10
18-
uses: actions/setup-python@v3
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.10"
21+
cache: 'pip'
2122
- name: Install dependencies
2223
run: |
2324
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)