Skip to content

Commit 4fdad3a

Browse files
Update GitHub Actions
1 parent da86958 commit 4fdad3a

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 3 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'
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name : Upload test results
8787
if : ${{ always() }}
88-
uses : actions/upload-artifact@v4
88+
uses : actions/upload-artifact@v5
8989
with :
9090
name : android-test-results-${{ matrix.api-level }}
9191
path : |

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

Lines changed: 6 additions & 6 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@v6
4545
with:
4646
node-version: ${{ matrix.node-version }}
4747
cache: 'yarn'
@@ -50,7 +50,7 @@ jobs:
5050
working-directory: platforms/web
5151
run: yarn install && yarn build:demo
5252
- name: Archive demo artifacts
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: dist-demo
5656
path: platforms/web/dist-demo
@@ -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@v6
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: 6 additions & 6 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'
@@ -88,13 +88,13 @@ jobs:
8888
id-token: write
8989
steps:
9090
- name: 🧮 Checkout code
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@v5
9292

9393
- name: 🦀 Build Rust
9494
run: "make web"
9595

9696
- name: 🔧 Yarn cache
97-
uses: actions/setup-node@v4
97+
uses: actions/setup-node@v6
9898
with:
9999
cache: "yarn"
100100
cache-dependency-path: platforms/web/yarn.lock

.github/workflows/react-build.yml

Lines changed: 3 additions & 3 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@v6
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535
cache: "yarn"
@@ -52,7 +52,7 @@ jobs:
5252
# https://github.com/codecov/codecov-action/issues/557#issuecomment-1216749652
5353
token: ${{ secrets.CODECOV_TOKEN }}
5454
- name: Upload Artifact
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v5
5656
with:
5757
name: coverage
5858
path: |

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