diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a336a78..c3519ac 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -25,13 +25,13 @@ jobs:
 
     steps:
       - name: Checkout
-        uses: actions/checkout@v2
+        uses: actions/checkout@v4
 
       - name: Validate Gradle Wrapper
         uses: gradle/wrapper-validation-action@v1
 
       - name: Configure JDK
-        uses: actions/setup-java@v2
+        uses: actions/setup-java@v4
         with:
           distribution: 'adopt'
           java-version: '17'
@@ -43,7 +43,7 @@ jobs:
 
       - name: (Fail-only) Upload build reports
         if: failure()
-        uses: actions/upload-artifact@v3
+        uses: actions/upload-artifact@v4
         with:
           name: reports
           path: |
diff --git a/build.gradle.kts b/build.gradle.kts
index 35c2045..f194baa 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -117,7 +117,7 @@ dependencies {
   implementation("com.google.auto.value:auto-value:1.10.4")
   implementation("com.google.auto.value:auto-value-annotations:1.10.4")
   testImplementation("junit:junit:4.13.2")
-  testImplementation("com.google.truth:truth:1.4.2")
+  testImplementation("com.google.truth:truth:1.4.3")
   testImplementation("org.jetbrains.kotlin:kotlin-test:1.9.23")
   testImplementation("com.google.testing.compile:compile-testing:0.21.0")
   testImplementation("com.ryanharter.auto.value:auto-value-moshi-extension:1.1.0")