Skip to content

Commit

Permalink
chore(deps): bump the github-actions-dependencies group with 3 updates
Browse files Browse the repository at this point in the history
Bumps the github-actions-dependencies group with 3 updates: [actions/setup-node](https://github.com/actions/setup-node), [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) and [actions/deploy-pages](https://github.com/actions/deploy-pages).

Updates `actions/setup-node` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4.0.0...v4.0.1)

Updates `actions/upload-pages-artifact` from 2 to 3
- [Release notes](https://github.com/actions/upload-pages-artifact/releases)
- [Commits](actions/upload-pages-artifact@v2...v3)

Updates `actions/deploy-pages` from 3 to 4
- [Release notes](https://github.com/actions/deploy-pages/releases)
- [Commits](actions/deploy-pages@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions-dependencies
- dependency-name: actions/upload-pages-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions-dependencies
- dependency-name: actions/deploy-pages
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and neilime committed Dec 21, 2023
1 parent e92b790 commit 8e17ffe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/__build-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
name: documentation

- uses: actions/[email protected].0
- uses: actions/[email protected].1
with:
node-version-file: ".nvmrc"
cache: yarn
Expand All @@ -60,6 +60,6 @@ jobs:

- name: 📦 Upload website build artifact
if: inputs.publish
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: website/build
5 changes: 4 additions & 1 deletion .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PRIVATE_ACCESS_TOKEN }}

- uses: actions/download-artifact@v4
with:
Expand All @@ -40,6 +42,7 @@ jobs:
with:
commit_message: "docs: update documentation"
commit_options: "--no-verify --signoff"
push_options: --force

- name: ⚙️ Setup Pages
if: github.ref == 'refs/heads/main'
Expand All @@ -48,4 +51,4 @@ jobs:
- name: 🚀 Deploy to GitHub Pages
id: deployment
if: github.ref == 'refs/heads/main'
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4

0 comments on commit 8e17ffe

Please sign in to comment.