From 62f828c0dd0b3bf700a971cc93acd2dc28a8fb69 Mon Sep 17 00:00:00 2001 From: csiblock <67273667+csiblock@users.noreply.github.com> Date: Wed, 6 Nov 2024 22:22:09 +0200 Subject: [PATCH 1/2] Update pull.yml to use actions/checkout@v4 this is required, since v1 and v2 are deprecated see https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ --- .github/workflows/pull.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 18723d8c..56fb3d3b 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -18,7 +18,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # The same command that users can use locally is used to build documentation. - name: Build documentation From 0bac4cbb9daa2716bdc3850fed3f0c01c6b82d15 Mon Sep 17 00:00:00 2001 From: csiblock <67273667+csiblock@users.noreply.github.com> Date: Wed, 6 Nov 2024 22:25:28 +0200 Subject: [PATCH 2/2] Update pull.yml actually update actions/upload-artifact to v4 --- .github/workflows/pull.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 56fb3d3b..b9faee61 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -18,7 +18,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 # The same command that users can use locally is used to build documentation. - name: Build documentation @@ -26,7 +26,7 @@ jobs: # Publish generated site as artifact. Unfortunately viewing it requires # downloading a .zip and uncompressing that (https://github.com/actions/upload-artifact/issues/14#issuecomment-620728238) - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: html-docs path: docs