Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20'

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

- name: Set up Docker Buildx
if: steps.detect.outputs.rebuild == 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to GitHub Container Registry
if: steps.detect.outputs.rebuild == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Extract base image metadata
if: steps.detect.outputs.rebuild == 'true'
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ github.repository_owner }}/attractor-base
tags: |
Expand All @@ -62,7 +62,7 @@ jobs:

- name: Build and push base image
if: steps.detect.outputs.rebuild == 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: docker/Dockerfile.base
Expand Down Expand Up @@ -142,18 +142,18 @@ jobs:
${{ steps.find-cli-jar.outputs.jar_path }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ github.repository }}
tags: |
Expand All @@ -163,7 +163,7 @@ jobs:
type=raw,value=latest

- name: Build and push Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: docker/Dockerfile
Expand Down
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ repositories {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.10.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.xerial:sqlite-jdbc:3.45.3.0")
runtimeOnly("com.mysql:mysql-connector-j:8.3.0")
runtimeOnly("org.postgresql:postgresql:42.7.2")

testImplementation("org.junit.jupiter:junit-jupiter:5.11.0")
testImplementation("com.h2database:h2:2.2.224")
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")
testImplementation("io.kotest:kotest-assertions-core:5.9.1")
implementation("com.squareup.okhttp3:okhttp:5.3.2")
implementation("org.xerial:sqlite-jdbc:3.51.2.0")
runtimeOnly("com.mysql:mysql-connector-j:9.6.0")
runtimeOnly("org.postgresql:postgresql:42.7.10")

testImplementation("org.junit.jupiter:junit-jupiter:6.0.3")
testImplementation("com.h2database:h2:2.4.240")
testImplementation("io.kotest:kotest-runner-junit5:6.1.5")
testImplementation("io.kotest:kotest-assertions-core:6.1.5")
testImplementation(kotlin("test"))
}

Expand Down