From 2823dae6ea01fec1217ffa7767421708c03368a5 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 26 May 2022 23:28:32 +0200 Subject: [PATCH] Bump actions to latest major --- .github/workflows/ci.yml | 2 +- .github/workflows/labels.yml | 2 +- README.md | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25d329c..60c31c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: tree -f -h ./public - name: Check GitHub Pages status - uses: crazy-max/ghaction-github-status@v2 + uses: crazy-max/ghaction-github-status@v3 with: pages_threshold: major_outage - diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index 132fbb1..26d6be3 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -17,4 +17,4 @@ jobs: uses: actions/checkout@v3 - name: Run Labeler - uses: crazy-max/ghaction-github-labeler@v3 + uses: crazy-max/ghaction-github-labeler@v4 diff --git a/README.md b/README.md index 803fbb4..03aaaa8 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ jobs: - name: Deploy to GitHub Pages if: success() - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v3 with: target_branch: gh-pages build_dir: public @@ -79,16 +79,16 @@ sign commits: ```yaml - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v3 + uses: crazy-max/ghaction-import-gpg@v5 with: - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} - git-user-signingkey: true - git-commit-gpgsign: true + git_user_signingkey: true + git_commit_gpgsign: true - name: Deploy to GitHub Pages if: success() - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v3 with: target_branch: gh-pages build_dir: public @@ -104,13 +104,13 @@ check availability of GitHub Pages before deploying: ```yaml - name: Check GitHub Pages status - uses: crazy-max/ghaction-github-status@v2 + uses: crazy-max/ghaction-github-status@v3 with: pages_threshold: major_outage - name: Deploy to GitHub Pages if: success() - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v3 with: target_branch: gh-pages build_dir: public