From 3b81a393831b96bd4df2cdcdaca0ad721aa3ab77 Mon Sep 17 00:00:00 2001 From: Brenders <83044464+Brenders@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:53:14 +0200 Subject: [PATCH 1/2] Update test_playlist.yml to the latest version of github action this change allows you to avoid errors in the action section when the job is automatically started as actions v1 and v2 are deprecated --- .github/workflows/test_playlist.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_playlist.yml b/.github/workflows/test_playlist.yml index d4c9411..7552c9e 100644 --- a/.github/workflows/test_playlist.yml +++ b/.github/workflows/test_playlist.yml @@ -11,12 +11,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: - node-version: "20.10.x" + node-version: "20.x" - name: Install m3u-linter and check the playlist run: | @@ -34,7 +34,7 @@ jobs: "no-multi-spaces": false, "no-extra-comma": true, "space-before-paren": false, - "no-dash": true + "no-dash": false } } EOF From 408934e9ba0375691ab62507810928e2d6ab1959 Mon Sep 17 00:00:00 2001 From: Brenders <83044464+Brenders@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:53:39 +0200 Subject: [PATCH 2/2] Update update_playlist.yml to Action version 4 this change allows you to avoid errors in the action section when the job is automatically started --- .github/workflows/update_playlist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_playlist.yml b/.github/workflows/update_playlist.yml index ba21fec..615ad19 100644 --- a/.github/workflows/update_playlist.yml +++ b/.github/workflows/update_playlist.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Update playlist run: | git config user.name "PlaylistBot" || true