From 72da152cfe7c845cbb638c945167e4578ac5f615 Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 11 Mar 2026 10:17:36 -0400 Subject: [PATCH] chore: remove deprecated workflow files from v1.x - Remove dependabot.yml (deprecated) - Remove test.yml workflow (consolidated into CI) - Remove lint.yml workflow (consolidated into CI) - Remove types.yml workflow (consolidated into CI) These workflows were already removed from main branch and are showing as disabled in GitHub Actions UI. Removing from v1.x branch to clean up the Actions workflow list. --- .github/dependabot.yml | 12 ------------ .github/workflows/lint.yml | 16 ---------------- .github/workflows/test.yml | 16 ---------------- .github/workflows/types.yml | 16 ---------------- 4 files changed, 60 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/lint.yml delete mode 100644 .github/workflows/test.yml delete mode 100644 .github/workflows/types.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index e218639c1..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,12 +0,0 @@ -version: 2 -updates: - - package-ecosystem: 'github-actions' - directory: '/' - schedule: - interval: 'weekly' - day: 'monday' - - package-ecosystem: 'npm' - directory: '/' - schedule: - interval: 'weekly' - day: 'monday' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 0b9175738..000000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Linting - -on: - push: - branches: [main] - tags: ['*'] - pull_request: - branches: [main] - workflow_dispatch: - -permissions: - contents: read - -jobs: - lint-check: - uses: SocketDev/socket-registry/.github/workflows/lint.yml@main diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 21df60b72..000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Tests - -on: - push: - branches: [main, v1.x] - tags: ['*'] - pull_request: - branches: [main, v1.x] - workflow_dispatch: - -permissions: - contents: read - -jobs: - test: - uses: SocketDev/socket-registry/.github/workflows/test.yml@main diff --git a/.github/workflows/types.yml b/.github/workflows/types.yml deleted file mode 100644 index 1f1646df0..000000000 --- a/.github/workflows/types.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Type Checks - -on: - push: - branches: [main] - tags: ['*'] - pull_request: - branches: [main] - workflow_dispatch: - -permissions: - contents: read - -jobs: - type-check: - uses: SocketDev/socket-registry/.github/workflows/types.yml@main