Skip to content
Open
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
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1

- uses: actions/setup-node@v4
- uses: actions/setup-node@v4.4.0
with:
node-version: 24
node-version: 24.16.0

- run: corepack enable

- name: find pnpm cache path
id: cache
run: echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v4
- uses: actions/cache@v4.3.0
with:
path: ${{ steps.cache.outputs.path }}
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -39,19 +39,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1

- uses: actions/setup-node@v4
- uses: actions/setup-node@v4.4.0
with:
node-version: 24
node-version: 24.16.0

- run: corepack enable

- name: find pnpm cache path
id: cache
run: echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v4
- uses: actions/cache@v4.3.0
with:
path: ${{ steps.cache.outputs.path }}
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -70,19 +70,19 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1

- uses: actions/setup-node@v4
- uses: actions/setup-node@v4.4.0
with:
node-version: 24
node-version: 24.16.0

- run: corepack enable

- name: find pnpm cache path
id: cache
run: echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v4
- uses: actions/cache@v4.3.0
with:
path: ${{ steps.cache.outputs.path }}
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -98,7 +98,7 @@ jobs:

- name: Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v4
uses: peaceiris/actions-gh-pages@v4.1.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
Expand All @@ -117,7 +117,7 @@ jobs:
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v5.10.0
with:
images: |
ghcr.io/${{ github.repository }}
Expand All @@ -127,14 +127,14 @@ jobs:

- name: Login to GHCR
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@v3
uses: docker/login-action@v3.7.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and maybe Push Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v6.19.2
with:
build-args: |
GIT_SHA=${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[tools]
node = "24"
node = "v24.16.0"
Loading