Skip to content

Commit 4cbe4ac

Browse files
committed
Chore dependency upgrade
1 parent b4ca66b commit 4cbe4ac

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
- name: Download source
1616
uses: actions/checkout@v3
1717
- name: Install Python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: '3.10'
1921
- name: Install dependencies
2022
run: pip install --no-deps -r docs/requirements.txt
2123
- name: Fetch branch

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
2020
```yaml
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- uses: crystal-lang/install-crystal@v1
2424
with:
2525
crystal: 1.2
@@ -41,7 +41,7 @@ steps:
4141
- uses: crystal-lang/install-crystal@v1
4242
with:
4343
crystal: ${{matrix.crystal}}
44-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v3
4545
- run: shards install
4646
- run: crystal spec
4747
- run: crystal tool format && git diff --exit-code

docs/configurator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
{%- endif %}
8686
steps:
8787
- name: Download source
88-
uses: actions/checkout@v2
88+
uses: actions/checkout@v3
8989
- name: Install Crystal
9090
uses: crystal-lang/install-crystal@v1
9191
{%- if crystal_nightly or crystal_ver %}
@@ -94,7 +94,7 @@ jobs:
9494
{%- endif %}
9595
{%- if cache_shards %}
9696
- name: Cache shards
97-
uses: actions/cache@v2
97+
uses: actions/cache@v3
9898
with:
9999
{%- if is_app %}
100100
path: lib

0 commit comments

Comments
 (0)