From 8fda9eae9b71b7e63cd02c863504f7b952a4754e Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Thu, 15 Aug 2019 17:59:41 +0900 Subject: [PATCH] upgrade: actions --- Dockerfile | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d59c7ae..f145ba0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/peaceiris/actions-hugo" LABEL "homepage"="https://github.com/peaceiris/actions-hugo" LABEL "maintainer"="peaceiris" -ENV HUGO_VERSION='0.56.3' +ENV HUGO_VERSION='0.57.0' ENV HUGO_NAME="hugo_extended_${HUGO_VERSION}_Linux-64bit" ENV HUGO_URL="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/${HUGO_NAME}.tar.gz" RUN wget "${HUGO_URL}" && \ diff --git a/README.md b/README.md index 7721f97..adf9235 100644 --- a/README.md +++ b/README.md @@ -36,18 +36,18 @@ action "is-branch-master" { action "build" { needs = "is-branch-master" - uses = "peaceiris/actions-hugo@v0.56.3" + uses = "peaceiris/actions-hugo@v0.57.0" args = ["--gc", "--minify", "--cleanDestinationDir"] } action "deploy" { needs = "build" - uses = "peaceiris/actions-gh-pages@v1.0.1" + uses = "peaceiris/actions-gh-pages@v1.1.0" env = { PUBLISH_DIR = "./public" PUBLISH_BRANCH = "gh-pages" } - secrets = ["ACTIONS_DEPLOY_KEY"] + secrets = ["GITHUB_TOKEN] } ```