From bdff82c3af9c63dbef2da1c28c49a071c1e8a709 Mon Sep 17 00:00:00 2001 From: Jarod42 Date: Fri, 4 Aug 2023 20:18:27 +0200 Subject: [PATCH] Fix github action node warning: -- 8< -- The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06 -- >8 -- --- .github/workflows/appimage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index 0b4e257e4..2e70b24c9 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -16,7 +16,7 @@ jobs: container: centos:7 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build game ${{ matrix.game.id }} run: bash -x ./tools/build_appimage.sh ${{ matrix.game.id }} ${{ matrix.game.name }} - name: Archive production artifacts