From f8084638f947a9882588ad66afdd32ea3efb333d Mon Sep 17 00:00:00 2001 From: Alexander Koz Date: Sun, 31 Mar 2024 00:09:02 +0400 Subject: [PATCH] update dependencies, closes #27 --- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 4 ++-- README.md | 2 +- action.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a399dc1..fade3b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc73456..94a9f4a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/README.md b/README.md index 4dd16df..1ce02b1 100644 --- a/README.md +++ b/README.md @@ -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: | diff --git a/action.yml b/action.yml index e229aa1..48c3ea0 100644 --- a/action.yml +++ b/action.yml @@ -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 }} @@ -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 }}