From d05e681af1f5c571d383bb27f618346f13185e74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 12:13:42 +0000 Subject: [PATCH 1/2] Bump JamesIves/github-pages-deploy-action from 3.6.2 to 4.1.5 Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.6.2 to 4.1.5. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/3.6.2...4.1.5) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ghpages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml index f263a21c5..86d88bdb9 100644 --- a/.github/workflows/ghpages.yml +++ b/.github/workflows/ghpages.yml @@ -19,7 +19,7 @@ jobs: run: sbt readme/run - name: Deploy - uses: JamesIves/github-pages-deploy-action@3.6.2 + uses: JamesIves/github-pages-deploy-action@4.1.5 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages From 8b1a35bf428dd5515e20556ba630e62618e9afa1 Mon Sep 17 00:00:00 2001 From: David Barri Date: Mon, 30 Aug 2021 08:15:05 +1000 Subject: [PATCH 2/2] Migrate github-pages-deploy-action settings These changes are required for v4 See https://github.com/JamesIves/github-pages-deploy-action/discussions/592 --- .github/workflows/ghpages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml index 86d88bdb9..d17fe1571 100644 --- a/.github/workflows/ghpages.yml +++ b/.github/workflows/ghpages.yml @@ -21,6 +21,6 @@ jobs: - name: Deploy uses: JamesIves/github-pages-deploy-action@4.1.5 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: readme/target/scalatex + token: ${{ secrets.GITHUB_TOKEN }} + branch: gh-pages + folder: readme/target/scalatex