Skip to content

Commit 7cf24d8

Browse files
Update GitHub Actions to v5
1 parent 1f9a578 commit 7cf24d8

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
echo "Contents:"
4040
find $ANDROID_NDK_TOOLCHAIN_DIR -maxdepth 1
4141
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545

.github/workflows/deploy-web-demo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
3838

3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- name: Build WASM bindings
4242
run: make web
4343
- name: Use Node.js ${{ matrix.node-version }}
@@ -68,9 +68,9 @@ jobs:
6868

6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272
- name: Download demo artifacts
73-
uses: actions/download-artifact@v4
73+
uses: actions/download-artifact@v5
7474
with:
7575
name: dist-demo
7676
path: platforms/web/dist-demo

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: macos-14
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Install xcresultparser
2828
run: brew install a7ex/homebrew-formulae/xcresultparser

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: macos-14
2222
steps:
2323
- name: 🧮 Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest # No need for macos-latest if there are no UI tests
5757
steps:
5858
- name: 🧮 Checkout code
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
fetch-depth: 0
6262

@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-latest
8686
steps:
8787
- name: 🧮 Checkout code
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v5
8989

9090
- name: 🦀 Build Rust
9191
run: "make web"

.github/workflows/react-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Rust & Cargo cache
2828
uses: Swatinem/rust-cache@v2
2929
- name: Build

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Install rust
2424
run: |
2525
rustup set profile minimal

.github/workflows/tag-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: 🧮 Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
token: ${{ secrets.PAT }}
1919

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Install rust
2424
run: |
2525
rustup set profile minimal

0 commit comments

Comments
 (0)