From c4b66a34aedae06b58c21fcf1d191c3961248f4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Lemaitre?= Date: Fri, 26 Jul 2024 14:25:40 +0200 Subject: [PATCH] chore: Upgrade Github Actions versions --- .github/workflows/build.yml | 4 ++-- .github/workflows/dependency-graph.yml | 4 ++-- .github/workflows/release.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b814b6a3a..f685a56cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: with: distribution: temurin java-version: 21 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | .ivy2 @@ -37,7 +37,7 @@ jobs: with: distribution: temurin java-version: 21 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | .ivy2 diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml index 532c928cf..e66035a2d 100644 --- a/.github/workflows/dependency-graph.yml +++ b/.github/workflows/dependency-graph.yml @@ -14,8 +14,8 @@ jobs: name: πŸ•ΈοΈ Update Dependency Graph runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: scalacenter/sbt-dependency-submission@v2 + - uses: actions/checkout@v4 + - uses: scalacenter/sbt-dependency-submission@v3 with: ## Optional: Define the working directory of your build. ## It should contain the build.sbt file. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79962403c..c631baa4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: run: echo "${{ secrets.PGP_SECRET }}" | base64 --decode | gpg --batch --import - name: πŸ‘» Cache SBT - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.sbt @@ -57,7 +57,7 @@ jobs: tag: ${{ steps.version.outputs.version }} - name: πŸ“¦ Create Release - uses: ncipollo/release-action@v1.12.0 + uses: ncipollo/release-action@v1.14.0 with: allowUpdates: true draft: false @@ -108,7 +108,7 @@ jobs: run: ./dtcw local install doctoolchain - name: πŸ“¦ Cache SBT - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .ivy2 @@ -134,7 +134,7 @@ jobs: run: cp -r ./target/microsite/output ./public - name: πŸš€ Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public