Skip to content

Commit 965c99a

Browse files
committed
Updating github action cache
1 parent 93c718e commit 965c99a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- name: Inject env variables
1111
uses: rlespinasse/[email protected]
12-
- uses: actions/checkout@v2
12+
- uses: actions/cache@v3
1313
- name: deploy JSON Schema for version ${{ env.GITHUB_REF_SLUG }}
1414
uses: peaceiris/actions-gh-pages@v3
1515
with:
@@ -20,7 +20,7 @@ jobs:
2020
if: startsWith(github.ref, 'refs/tags/stac-model-v')
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/cache@v3
2424
- name: Set up Python
2525
uses: actions/[email protected]
2626
with:

.github/workflows/stac-model.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
python-version: ["3.10", "3.11", "3.12"]
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/cache@v3
1414
- name: Set up Python ${{ matrix.python-version }}
1515
uses: actions/[email protected]
1616
with:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
node-version: ${{ matrix.node-version }}
1313
cache: npm
14-
- uses: actions/checkout@v2
14+
- uses: actions/cache@v3
1515
- run: |
1616
npm install
1717
npm test

0 commit comments

Comments
 (0)