diff --git a/lib/modules/platform/github/api-cache.spec.ts b/lib/modules/platform/github/api-cache.spec.ts
index 2c831ed17f5263285e7009246469499c69717213..007145f1c6eebaba2a8a02ed33b9c7ff59108c19 100644
--- a/lib/modules/platform/github/api-cache.spec.ts
+++ b/lib/modules/platform/github/api-cache.spec.ts
@@ -205,23 +205,4 @@ describe('modules/platform/github/api-cache', () => {
       expect(needNextPage).toBeFalse();
     });
   });
-
-  describe('etag', () => {
-    it('returns null', () => {
-      const apiCache = new ApiCache({ items: {} });
-      expect(apiCache.etag).toBeNull();
-    });
-
-    it('sets and retrieves non-null value', () => {
-      const apiCache = new ApiCache({ items: {} });
-      apiCache.etag = 'foobar';
-      expect(apiCache.etag).toBe('foobar');
-    });
-
-    it('deletes value for null parameter', () => {
-      const apiCache = new ApiCache({ items: {} });
-      apiCache.etag = null;
-      expect(apiCache.etag).toBeNull();
-    });
-  });
 });
diff --git a/lib/modules/platform/github/api-cache.ts b/lib/modules/platform/github/api-cache.ts
index 016ddd7a75968f738c669df38b52160052e79671..12fe1ca9002b3df99590feb05ffc4694114cfd78 100644
--- a/lib/modules/platform/github/api-cache.ts
+++ b/lib/modules/platform/github/api-cache.ts
@@ -5,18 +5,6 @@ import type { ApiPageCache, ApiPageItem } from './types';
 export class ApiCache<T extends ApiPageItem> {
   constructor(private cache: ApiPageCache<T>) {}
 
-  get etag(): string | null {
-    return this.cache.etag ?? null;
-  }
-
-  set etag(value: string | null) {
-    if (value === null) {
-      delete this.cache.etag;
-    } else {
-      this.cache.etag = value;
-    }
-  }
-
   /**
    * @returns Date formatted to use in HTTP headers
    */
diff --git a/lib/modules/platform/github/types.ts b/lib/modules/platform/github/types.ts
index e790de784f9306916b854b1375c0b8688a2dd143..86fdc330c622e74dfcb4d2b89b9e3c1d59519738 100644
--- a/lib/modules/platform/github/types.ts
+++ b/lib/modules/platform/github/types.ts
@@ -145,5 +145,4 @@ export interface ApiPageItem {
 export interface ApiPageCache<T extends ApiPageItem = ApiPageItem> {
   items: Record<number, T>;
   lastModified?: string;
-  etag?: string;
 }