From 6264a1be577b5fe09f305d361692b138c0732e8e Mon Sep 17 00:00:00 2001 From: Adam Nash Date: Mon, 29 Apr 2024 21:43:38 -0400 Subject: [PATCH 1/3] ci: update node version for release ci --- .github/workflows/prod-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prod-build.yml b/.github/workflows/prod-build.yml index dfcd4bc..f39c685 100644 --- a/.github/workflows/prod-build.yml +++ b/.github/workflows/prod-build.yml @@ -57,7 +57,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 20 - uses: actions/checkout@v3 - uses: actions/download-artifact@v3 From 831454a3a28732dad44a14565150e41391b37970 Mon Sep 17 00:00:00 2001 From: Adam Nash Date: Mon, 29 Apr 2024 21:48:36 -0400 Subject: [PATCH 2/3] ci: avoid action deprecation --- .github/workflows/prod-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prod-build.yml b/.github/workflows/prod-build.yml index f39c685..53d22e3 100644 --- a/.github/workflows/prod-build.yml +++ b/.github/workflows/prod-build.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 20 - name: Check out repo uses: actions/checkout@v3 with: @@ -46,7 +46,7 @@ jobs: - name: Package Build Artifacts run: ninja package -C build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: DEB Packages ${{ matrix.os }} path: build/hobbits-*deb* @@ -60,7 +60,7 @@ jobs: node-version: 20 - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Check Files run: ls -R From 2d58fb2f61cc2b20ac2a901325ad54422ec03215 Mon Sep 17 00:00:00 2001 From: Adam Nash Date: Mon, 29 Apr 2024 21:49:30 -0400 Subject: [PATCH 3/3] fix: add versionless Qt build compatibility