Skip to content

Commit

Permalink
Update all actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pheki committed Feb 18, 2024
1 parent 97bca3c commit 0037f26
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
needs: install-vitasdk
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Restore vitasdk cache
uses: actions/cache/restore@v3
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- uses: actions/checkout@v3

- name: Restore vitasdk cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: /opt/vitasdk
key: ${{ runner.os }}-vitasdk
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
env:
RUSTDOCFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setup-vitasdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
steps:
- name: Cache vitasdk
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.path }}
# Don't really know a good key to use here, but the cache will be
# deleted automatically if it's not used for a week.
key: ${{ runner.os }}-vitasdk

- name: Checkout VPDM
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: vitasdk/vdpm

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/update-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ jobs:
runs-on: ubuntu-latest
needs: install-vitasdk
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- name: Restore vitasdk cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: /opt/vitasdk
key: ${{ runner.os }}-vitasdk
fail-on-cache-miss: true

- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ runner.temp }}/llvm
Expand All @@ -49,7 +49,7 @@ jobs:
cached: ${{ steps.cache-llvm.outputs.cache-hit }}

- name: Cache build-util dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Commit and create pull request
id: create-pull-request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ steps.generate-token.outputs.token }}
title: Update vita-headers bindings
Expand Down

0 comments on commit 0037f26

Please sign in to comment.