From 98cb2c8c5e6bd517d533bd72f52b6b90e4c03ab5 Mon Sep 17 00:00:00 2001 From: bbhtt Date: Sat, 14 Mar 2026 09:15:31 +0530 Subject: [PATCH 1/2] action: Bump to node 24 Fixes https://github.com/flatpak/flatpak-github-actions/issues/242 --- flat-manager/action.yml | 2 +- flatpak-builder/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flat-manager/action.yml b/flat-manager/action.yml index 37791a78..b68f38b3 100644 --- a/flat-manager/action.yml +++ b/flat-manager/action.yml @@ -35,5 +35,5 @@ inputs: required: false default: "false" runs: - using: "node20" + using: "node24" main: "dist/index.js" diff --git a/flatpak-builder/action.yml b/flatpak-builder/action.yml index 0af64f09..10eb2708 100644 --- a/flatpak-builder/action.yml +++ b/flatpak-builder/action.yml @@ -96,5 +96,5 @@ inputs: required: false default: "true" runs: - using: "node20" + using: "node24" main: "dist/index.js" From ee2560493049571fa1e5f098621f5eeda981a94c Mon Sep 17 00:00:00 2001 From: bbhtt Date: Sat, 14 Mar 2026 09:59:10 +0530 Subject: [PATCH 2/2] ci: Test with supported Node versions --- .github/workflows/flatpak-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flatpak-test.yml b/.github/workflows/flatpak-test.yml index cabcf0e0..1c2475b2 100644 --- a/.github/workflows/flatpak-test.yml +++ b/.github/workflows/flatpak-test.yml @@ -119,7 +119,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x] + node-version: [24.x, 25.x] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} @@ -136,10 +136,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Use Node.js 18 + - name: Use Node.js 24 uses: actions/setup-node@v3 with: - node-version: "18" + node-version: "24" - run: yarn install --also=dev working-directory: flatpak-builder - run: yarn run eslint .