Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #28

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected]
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