Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
echo "Contents:"
find $ANDROID_NDK_TOOLCHAIN_DIR -maxdepth 1

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

- uses: actions/setup-java@v4
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

- name : Upload test results
if : ${{ always() }}
uses : actions/upload-artifact@v4
uses : actions/upload-artifact@v5
with :
name : android-test-results-${{ matrix.api-level }}
path : |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy-web-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build WASM bindings
run: make web
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand All @@ -50,7 +50,7 @@ jobs:
working-directory: platforms/web
run: yarn install && yarn build:demo
- name: Archive demo artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-demo
path: platforms/web/dist-demo
Expand All @@ -68,16 +68,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download demo artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: dist-demo
path: platforms/web/dist-demo
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload github-pages
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: platforms/web/dist-demo
- name: Deploy github-pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'iOS'))
runs-on: macos-14
runs-on: macos-15

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install xcresultparser
run: brew install a7ex/homebrew-formulae/xcresultparser
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ env:
jobs:
ios:
name: Publish to Swift repo
runs-on: macos-14
runs-on: macos-15
steps:
- name: 🧮 Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -56,12 +56,12 @@ jobs:
runs-on: ubuntu-latest # No need for macos-latest if there are no UI tests
steps:
- name: 🧮 Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: ☕️ Setup Java
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
Expand All @@ -85,13 +85,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🧮 Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

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

- name: 🔧 Yarn cache
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
cache: "yarn"
cache-dependency-path: platforms/web/yarn.lock
Expand All @@ -107,7 +107,7 @@ jobs:

- name: 🚀 Publish to npm
id: npm-publish
uses: JS-DevTools/npm-publish@v3
uses: JS-DevTools/npm-publish@v4
with:
package: platforms/web/package.json
token: ${{ secrets.NPM_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/react-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Rust & Cargo cache
uses: Swatinem/rust-cache@v2
- name: Build
run: make web
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
Expand All @@ -52,7 +52,7 @@ jobs:
# https://github.com/codecov/codecov-action/issues/557#issuecomment-1216749652
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install rust
run: |
rustup set profile minimal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🧮 Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ secrets.PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage-labelled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: >
github.repository == 'element-hq/matrix-rich-text-editor'
steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.addLabels({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install rust
run: |
rustup set profile minimal
Expand Down
Loading