Skip to content

Commit

Permalink
Updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireAotD committed Sep 29, 2024
1 parent d4f11ea commit 763912b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ DB_USER=
DB_PASSWORD=
DB_ROOT_PASSWORD=

REDIS_VERSION=7.4
REDIS_PORT=6379
REDIS_PASSWORD=
2 changes: 1 addition & 1 deletion .github/workflows/frontend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [ 20.x ]
pnpm-version: [ 9.7 ]
pnpm-version: [ 9.11 ]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [ 20.x ]
pnpm-version: [ 9.7 ]
pnpm-version: [ 9.11 ]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ This variables will be located in project root `.env` file and are required for
| `DB_USER` | (empty) | The username for the database connection. |
| `DB_PASSWORD` | (empty) | The password for the database connection. |
| `DB_ROOT_PASSWORD` | (empty) | The root password for the database connection. |
| `REDIS_VERSION` | 7.4 | Specifies Redis version. |
| `REDIS_PORT` | 6379 | Specifies the port for the Redis connection. |
| `REDIS_PASSWORD` | (empty) | The password for the Redis connection. |

Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- local

redis:
image: redis:latest
image: redis:${REDIS_VERSION}
container_name: anilibrary-redis
command: redis-server --requirepass ${REDIS_PASSWORD}
healthcheck:
Expand Down
4 changes: 2 additions & 2 deletions docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# syntax=docker/dockerfile:1

ARG PHP_VERSION=8.3
ARG COMPOSER_VERSION=2.7.7
ARG NODE_VERSION=20.16
ARG COMPOSER_VERSION=2.7.9
ARG NODE_VERSION=20.17
ARG PNPM_VERSION=9.11.0

FROM node:${NODE_VERSION}-alpine AS node
Expand Down

0 comments on commit 763912b

Please sign in to comment.