From 04b395e384ab271cd6532028932ec0ad3ea575cf Mon Sep 17 00:00:00 2001 From: Niklas Klein Date: Wed, 9 Oct 2024 10:49:51 +0200 Subject: [PATCH] Upgrade to actions/download-artifact@v4 --- .github/workflows/tag.yml | 2 +- project/GithubActionsGenerator.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 2fb8422..2a80fda 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -108,7 +108,7 @@ jobs: distribution: temurin cache: sbt - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: documentation path: ./documentation diff --git a/project/GithubActionsGenerator.scala b/project/GithubActionsGenerator.scala index 400bf18..29fb8a0 100644 --- a/project/GithubActionsGenerator.scala +++ b/project/GithubActionsGenerator.scala @@ -101,7 +101,7 @@ object GithubActionsGenerator { steps = List( Json.obj( "name" := "Download artifact", - "uses" := "actions/download-artifact@v3", + "uses" := "actions/download-artifact@v4", "with" := Json.obj( "name" := "documentation", "path" := "./documentation"