From 7a872cdd2bf0d53fe135023da62c9d5ea94954c5 Mon Sep 17 00:00:00 2001 From: Murmele Date: Wed, 11 Sep 2024 08:26:17 +0000 Subject: [PATCH 1/3] Update artifacts action to version 4.x.x --- flatpak-builder/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatpak-builder/package.json b/flatpak-builder/package.json index 5eef0f67..bd10b6b7 100644 --- a/flatpak-builder/package.json +++ b/flatpak-builder/package.json @@ -12,7 +12,7 @@ ] }, "dependencies": { - "@actions/artifact": "^1.1.1", + "@actions/artifact": "^4.4.0", "@actions/cache": "^3.2.1", "@actions/core": "^1.10.0", "@actions/exec": "^1.1.1", From 069864adcab25f59f10ba9af24d3130ac294eceb Mon Sep 17 00:00:00 2001 From: Murmele Date: Wed, 11 Sep 2024 08:32:48 +0000 Subject: [PATCH 2/3] actions/artifact has version 2.1.9 and includes upload-artifacts v4 --- flatpak-builder/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flatpak-builder/package.json b/flatpak-builder/package.json index bd10b6b7..ee29820b 100644 --- a/flatpak-builder/package.json +++ b/flatpak-builder/package.json @@ -12,11 +12,11 @@ ] }, "dependencies": { - "@actions/artifact": "^4.4.0", - "@actions/cache": "^3.2.1", - "@actions/core": "^1.10.0", + "@actions/artifact": "^2.1.9", + "@actions/cache": "^3.2.4", + "@actions/core": "^1.10.1", "@actions/exec": "^1.1.1", - "@actions/github": "^5.1.0", + "@actions/github": "^6.0.0", "js-yaml": "^4.1.0" }, "devDependencies": { From c491612774eb634faa20c325c6b734e42fabcd10 Mon Sep 17 00:00:00 2001 From: Murmele Date: Wed, 11 Sep 2024 08:46:07 +0000 Subject: [PATCH 3/3] update node versions --- .github/workflows/flatpak-test.yml | 6 +++--- flat-manager/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/flatpak-test.yml b/.github/workflows/flatpak-test.yml index c968b686..2aebb861 100644 --- a/.github/workflows/flatpak-test.yml +++ b/.github/workflows/flatpak-test.yml @@ -87,7 +87,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} @@ -104,10 +104,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: "16" + node-version: "18" - run: yarn install --also=dev working-directory: flatpak-builder - run: yarn run eslint . diff --git a/flat-manager/package.json b/flat-manager/package.json index 8f5c9a05..d098ad70 100644 --- a/flat-manager/package.json +++ b/flat-manager/package.json @@ -3,7 +3,7 @@ "main": "index.js", "license": "MIT", "dependencies": { - "@actions/core": "^1.10.0", + "@actions/core": "^1.10.1", "@actions/exec": "^1.1.1" }, "devDependencies": {