Skip to content

Commit

Permalink
Merge pull request #28 from pd-rs/upd-deps
Browse files Browse the repository at this point in the history
Update dependencies, closes #27
  • Loading branch information
boozook authored Mar 30, 2024
2 parents 843d390 + f808463 commit a0d1e53
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# checkout needed for changelog only
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ steps.version.outputs.value }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- windows-latest
version:
- latest # actual version
- 2.0.1 # specified version
- 2.4.1 # specified version
cache: [true, false]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install SDK
id: installer
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Also installs arm-gcc gnu toolchain.
id: playdate
uses: pd-rs/get-playdate-sdk@0.1.6
with:
version: 2.0.0 # possible values: version `x.x.x` or `latest` by default
version: 2.4.2 # possible values: version `x.x.x` or `latest` by default

- name: usage
run: |
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ runs:
- name: Cache restore
if: inputs.cache == 'true'
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache-restore
with:
path: ${{ steps.cfg.outputs.filename }}
Expand All @@ -88,7 +88,7 @@ runs:
id: cache-save
# cache-miss and using cache
if: (steps.cache-restore.outputs.cache-hit != 'true') && (inputs.cache == 'true')
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ steps.cfg.outputs.filename }}
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
Expand Down

0 comments on commit a0d1e53

Please sign in to comment.