Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v6.0.0

- name: Setup Node
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v6.0.0
with:
node-version: 20
node-version: 22

- run: npm install
# - run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/command-block.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# If you are on this list, be careful about accidental changes!
if: ${{!contains(fromJSON('["hustcer", "sholderbach"]'), github.event.pull_request.user.login)}}
steps:
- uses: actions/github-script@v7.0.1
- uses: actions/github-script@v8.0.0
with:
script: |
github.rest.issues.createComment({
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v6.0.0
with:
ref: main
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v6.0.0
with:
node-version: 20
node-version: 22

- run: npm install
- name: Build Static Docs
Expand All @@ -28,7 +28,7 @@ jobs:
run: npm run build

- name: Upload Artifact
uses: actions/upload-pages-artifact@v3.0.1
uses: actions/upload-pages-artifact@v4.0.0
with:
path: ./.vuepress/dist

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4.1.2
uses: actions/checkout@v6.0.0
- name: Compress Images
id: calibre
uses: calibreapp/image-actions@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4.1.2
uses: actions/checkout@v6.0.0

- name: Check spelling
uses: crate-ci/typos@master