Skip to content

Commit

Permalink
ci: update actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Mar 17, 2024
1 parent deedab1 commit ffa4cd9
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/actions/internal/install-haxelibs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
##################################################
- name: "Haxe Libs Cache: Restore"
id: HAXE-LIBS-CACHE-RESTORE
uses: actions/cache/restore@v3 # https://github.com/actions/cache/tree/main/restore
uses: actions/cache/restore@v4 # https://github.com/actions/cache/tree/main/restore
with:
path: |
${{ runner.tool_cache }}/haxe/lib
Expand Down Expand Up @@ -187,7 +187,7 @@ runs:
echo "::endgroup::"
- name: "Haxe Libs Cache: Update"
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: steps.HAXE-LIBS-CACHE-UPDATE-PREPARE.outputs.need_cache_update == 'true'
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-cs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
steps:
- name: "Setup C#: Cache"
if: runner.os == 'Windows'
uses: actions/cache@v3 # https://github.com/actions/cache
uses: actions/cache@v4 # https://github.com/actions/cache
with:
path: ${{ inputs.cache-folder }}
key: ${{ runner.os }}-mono-${{ inputs.mono-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-flash/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
using: "composite"
steps:
- name: "Setup Flash: Cache"
uses: actions/cache@v3 # https://github.com/actions/cache
uses: actions/cache@v4 # https://github.com/actions/cache
with:
path: ${{ inputs.cache-folder }}
key: ${{ runner.os }}-flash-${{ inputs.flash-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-hashlink/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: "composite"
steps:
- name: "Setup Hashlink: Cache"
uses: actions/cache@v3 # https://github.com/actions/cache
uses: actions/cache@v4 # https://github.com/actions/cache
with:
path: ${{ inputs.cache-folder }}
key: ${{ runner.os }}-hashlink-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-java/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: "composite"
steps:
- name: "Setup Java: Install Binaries"
uses: actions/setup-java@v3 # https://github.com/marketplace/actions/setup-java-jdk
uses: actions/setup-java@v4 # https://github.com/marketplace/actions/setup-java-jdk
with:
distribution: 'temurin'
java-version: ${{ inputs.java-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-lua/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
using: "composite"
steps:
- name: "Setup Lua: Cache"
uses: actions/cache@v3 # https://github.com/actions/cache
uses: actions/cache@v4 # https://github.com/actions/cache
with:
path: ${{ inputs.cache-folder }}
key: ${{ runner.os }}-lua-${{ inputs.lua-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-neko/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: "composite"
steps:
- name: "Setup Neko: Cache"
uses: actions/cache@v3 # https://github.com/actions/cache
uses: actions/cache@v4 # https://github.com/actions/cache
with:
path: ${{ runner.temp }}/haxe/targets/neko-${{ inputs.neko-version }}
key: ${{ runner.os }}-neko-${{ inputs.neko-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/internal/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: "composite"
steps:
- name: "Setup Node: Install Binaries"
uses: actions/setup-node@v3 # https://github.com/marketplace/actions/setup-node-js-environment
uses: actions/setup-node@v4 # https://github.com/marketplace/actions/setup-node-js-environment
with:
node-version: ${{ inputs.node-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-haxe/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:

- name: "Setup Haxe: Cache"
if: inputs.haxe.version != 'nightly'
uses: actions/cache@v3 # https://github.com/actions/cache
uses: actions/cache@v4 # https://github.com/actions/cache
with:
path: ${{ runner.temp }}/haxe/sdk/haxe-${{ inputs.haxe-version }}
key: ${{ runner.os }}-haxe-${{ inputs.haxe-version }}
Expand Down

0 comments on commit ffa4cd9

Please sign in to comment.