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
2 changes: 1 addition & 1 deletion .github/workflows/docker-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Log in to the Container registry
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Log in to the Container registry
uses: docker/login-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Build Swift Package
run: swift build
Expand All @@ -43,7 +43,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Show Xcode version
run: xcodebuild -version
Expand All @@ -66,7 +66,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate-package-resolved.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ================================
# Build image
# ================================
FROM swift:6.0-noble AS build
FROM swift:6.2-noble AS build

# Install OS updates
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
Expand Down
11 changes: 10 additions & 1 deletion Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "4.117.0"),
.package(url: "https://github.com/vapor/vapor.git", from: "4.119.2"),
// 🗄 An ORM for SQL and NoSQL databases.
.package(url: "https://github.com/vapor/fluent.git", from: "4.13.0"),
// 🐬 Fluent driver for MySQL.
Expand All @@ -27,19 +27,19 @@ let package = Package(
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.10.3"),
.package(url: "https://github.com/swift-server/swift-openapi-vapor", from: "1.0.1"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.10.0"),
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.7.0"),
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.8.3"),
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.2.0"),
// TCA and related
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "1.23.1"),
.package(url: "https://github.com/pointfreeco/swift-sharing", from: "2.7.4"),
// other stuff
.package(url: "https://github.com/vapor/apns.git", from: "5.0.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.4"),
.package(url: "https://github.com/chrisaljoudi/swift-log-oslog.git", from: "0.2.1"),
.package(url: "https://github.com/chrisaljoudi/swift-log-oslog.git", from: "0.2.2"),
.package(url: "https://github.com/juliankahnert/TibberSwift.git", branch: "main"),
.package(url: "https://github.com/apple/swift-distributed-actors", revision: "0041f6a"),
// .package(url: "https://github.com/swift-server-community/APNSwift", branch: "main")
.package(url: "https://github.com/swift-server-community/APNSwift", from: "6.1.0")
.package(url: "https://github.com/swift-server-community/APNSwift", from: "6.2.0")
],
targets: [
.executableTarget(
Expand Down