From 9db8b5969a6b850eda6003bdf3ebbe223cee0131 Mon Sep 17 00:00:00 2001 From: Carl-Erik Kopseng Date: Fri, 13 Sep 2024 00:55:20 +0200 Subject: [PATCH] Use Node 22 in runners --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3bf122..210c393 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "16" + node-version: "22" - name: Cache modules uses: actions/cache@v2 with: @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "16" + node-version: "22" - name: Cache modules uses: actions/cache@v2 with: @@ -58,7 +58,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "16" + node-version: "22" - name: Cache npm uses: actions/cache@v2 with: @@ -82,7 +82,7 @@ jobs: strategy: matrix: - node-version: [16] + node-version: [22] steps: - uses: actions/checkout@v2