Skip to content

Commit

Permalink
Bump action versions (#289)
Browse files Browse the repository at this point in the history
* Bump action versions

* Fix build node version
  • Loading branch information
kjy5 authored Oct 6, 2023
1 parent 1e8d7e8 commit 241bc8f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:

steps:
- name: πŸ›Ž Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Configure NPM to cache dependencies
- name: πŸ“¦ Setup Node.js and caching
uses: actions/setup-node@v3
with:
node-version: 19
node-version: 20
cache: "npm"

# Install deps and build
Expand All @@ -40,6 +40,6 @@ jobs:
# Upload artifact if requested
- name: ⬆️ Upload artifact
if: ${{ inputs.upload-artifact }}
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2
with:
path: "dist"
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Dependency Review"
uses: actions/dependency-review-action@v2
uses: actions/dependency-review-action@v3
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:

steps:
- name: πŸ›  Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v3

- name: πŸš€ Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v2
8 changes: 4 additions & 4 deletions .github/workflows/reformat-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
steps:
- name: πŸ›Ž Checkout
if: github.event.pull_request.user.login != 'dependabot[bot]'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.WORKFLOW_COMMIT }}

- name: πŸ€–πŸ›Ž Bot Checkout
if: github.event.pull_request.user.login == 'dependabot[bot]'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: πŸ“¦ Setup Node.js and caching
uses: actions/setup-node@v3
with:
node-version: 19
node-version: 20
cache: "npm"

- name: πŸ”¨ Install
Expand All @@ -38,6 +38,6 @@ jobs:

- name: ⬆️ Commit changes
if: github.event.pull_request.user.login != 'dependabot[bot]'
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Reformat and Lint

0 comments on commit 241bc8f

Please sign in to comment.