Skip to content

Commit

Permalink
Upgrade action dependencies to use ones with Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
samozzy committed Dec 3, 2022
1 parent 7975f34 commit 8fe9b0d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
### PREP ###
- name: Checkout repo
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3
with:
persist-credentials: false # needed for JamesIves/github-pages-deploy-action

Expand All @@ -27,7 +27,7 @@ jobs:
ruby-version: 2.7.1
- name: Cache Ruby gems
id: cache-gems
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-1-${{ hashFiles('Gemfile.lock') }}
Expand All @@ -42,7 +42,7 @@ jobs:

### TEST ###
- name: Cache htmltest files
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: tmp/htmltest
key: htmltest-1
Expand All @@ -54,15 +54,15 @@ jobs:
### DEPLOY ###
- name: Publish to GH Pages 🚀
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: JamesIves/github-pages-deploy-action@3.7.1
uses: JamesIves/github-pages-deploy-action@v4
with:
REPOSITORY_NAME: newtheatre/website-gh-pages-master
GITHUB_TOKEN: ${{ secrets.DEPLOY_PAT }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: _site # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
GIT_CONFIG_NAME: ntbot
GIT_CONFIG_EMAIL: webmaster@newtheatre.org.uk
repository-name: newtheatre/website-gh-pages-master
token: ${{ secrets.DEPLOY_PAT }}
branch: gh-pages # The branch the action should deploy to.
folder: _site # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch
git-config-name: ntbot
git-config-email: webmaster@newtheatre.org.uk

### SUCCESS ###
## TODO: Can we add Telegram notifiers here?

0 comments on commit 8fe9b0d

Please sign in to comment.