Skip to content

Commit c4c6664

Browse files
Update GitHub Actions
1 parent c3e211e commit c4c6664

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ 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

46-
- uses: actions/setup-java@v4
46+
- uses: actions/setup-java@v5
4747
with:
4848
distribution: 'temurin'
4949
java-version: '21'

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ 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 }}
44-
uses: actions/setup-node@v4
44+
uses: actions/setup-node@v5
4545
with:
4646
node-version: ${{ matrix.node-version }}
4747
cache: 'yarn'
@@ -68,16 +68,16 @@ 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
7777
- name: Setup Pages
7878
uses: actions/configure-pages@v5
7979
- name: Upload github-pages
80-
uses: actions/upload-pages-artifact@v3
80+
uses: actions/upload-pages-artifact@v4
8181
with:
8282
path: platforms/web/dist-demo
8383
- name: Deploy github-pages

.github/workflows/ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
if: |
2020
github.event_name == 'push' ||
2121
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'iOS'))
22-
runs-on: macos-14
22+
runs-on: macos-15
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ env:
1818
jobs:
1919
ios:
2020
name: Publish to Swift repo
21-
runs-on: macos-14
21+
runs-on: macos-15
2222
steps:
2323
- name: 🧮 Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

@@ -56,12 +56,12 @@ 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

6363
- name: ☕️ Setup Java
64-
uses: actions/setup-java@v4
64+
uses: actions/setup-java@v5
6565
with:
6666
distribution: 'temurin'
6767
java-version: '21'
@@ -85,13 +85,13 @@ 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"
9292

9393
- name: 🔧 Yarn cache
94-
uses: actions/setup-node@v4
94+
uses: actions/setup-node@v5
9595
with:
9696
cache: "yarn"
9797
cache-dependency-path: platforms/web/yarn.lock
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: 🚀 Publish to npm
109109
id: npm-publish
110-
uses: JS-DevTools/npm-publish@v3
110+
uses: JS-DevTools/npm-publish@v4
111111
with:
112112
package: platforms/web/package.json
113113
token: ${{ secrets.NPM_TOKEN }}

.github/workflows/react-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ 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
3030
run: make web
3131
- name: Use Node.js ${{ matrix.node-version }}
32-
uses: actions/setup-node@v4
32+
uses: actions/setup-node@v5
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535
cache: "yarn"

.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/triage-labelled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: >
1313
github.repository == 'element-hq/matrix-rich-text-editor'
1414
steps:
15-
- uses: actions/github-script@v7
15+
- uses: actions/github-script@v8
1616
with:
1717
script: |
1818
github.rest.issues.addLabels({

.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)