Skip to content

Commit ff23c54

Browse files
Update action versions in code examples/templates (#35)
1 parent 2a320b3 commit ff23c54

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ steps:
1919
2020
```yaml
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: crystal-lang/install-crystal@v1
2424
with:
25-
crystal: 1.2
25+
crystal: 1.11
2626
- run: shards install
2727
- run: crystal spec
2828
```
@@ -41,7 +41,7 @@ steps:
4141
- uses: crystal-lang/install-crystal@v1
4242
with:
4343
crystal: ${{matrix.crystal}}
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
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@v3
88+
uses: actions/checkout@v4
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@v3
97+
uses: actions/cache@v4
9898
with:
9999
{%- if is_app %}
100100
path: lib

0 commit comments

Comments
 (0)