Skip to content

Commit 885c05a

Browse files
chore(deps): update all dependencies
1 parent bf2c819 commit 885c05a

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/docker-branches.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Log in to the Container registry
3131
uses: docker/login-action@v3

.github/workflows/docker-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Log in to the Container registry
2626
uses: docker/login-action@v3

.github/workflows/pr-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Build Swift Package
2323
run: swift build
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v6
4747

4848
- name: Show Xcode version
4949
run: xcodebuild -version
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- name: Checkout repository
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@v6
7070

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

.github/workflows/renovate-package-resolved.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
fetch-depth: 0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ================================
22
# Build image
33
# ================================
4-
FROM swift:6.0-noble AS build
4+
FROM swift:6.2-noble AS build
55

66
# Install OS updates
77
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
),
1919
],
2020
dependencies: [
21-
.package(url: "https://github.com/vapor/vapor.git", from: "4.117.0"),
21+
.package(url: "https://github.com/vapor/vapor.git", from: "4.119.2"),
2222
// 🗄 An ORM for SQL and NoSQL databases.
2323
.package(url: "https://github.com/vapor/fluent.git", from: "4.13.0"),
2424
// 🐬 Fluent driver for MySQL.
@@ -27,19 +27,19 @@ let package = Package(
2727
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.10.3"),
2828
.package(url: "https://github.com/swift-server/swift-openapi-vapor", from: "1.0.1"),
2929
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.10.0"),
30-
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.7.0"),
31-
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
30+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.8.3"),
31+
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.2.0"),
3232
// TCA and related
3333
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "1.23.1"),
3434
.package(url: "https://github.com/pointfreeco/swift-sharing", from: "2.7.4"),
3535
// other stuff
3636
.package(url: "https://github.com/vapor/apns.git", from: "5.0.0"),
3737
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.4"),
38-
.package(url: "https://github.com/chrisaljoudi/swift-log-oslog.git", from: "0.2.1"),
38+
.package(url: "https://github.com/chrisaljoudi/swift-log-oslog.git", from: "0.2.2"),
3939
.package(url: "https://github.com/juliankahnert/TibberSwift.git", branch: "main"),
4040
.package(url: "https://github.com/apple/swift-distributed-actors", revision: "0041f6a"),
4141
// .package(url: "https://github.com/swift-server-community/APNSwift", branch: "main")
42-
.package(url: "https://github.com/swift-server-community/APNSwift", from: "6.1.0")
42+
.package(url: "https://github.com/swift-server-community/APNSwift", from: "6.2.0")
4343
],
4444
targets: [
4545
.executableTarget(

0 commit comments

Comments
 (0)