From 35529e8cc27f1ef99cc835fab4923dc87ef187dd Mon Sep 17 00:00:00 2001 From: Joe Grandja <10884212+jgrandja@users.noreply.github.com> Date: Tue, 22 Jul 2025 15:04:39 -0400 Subject: [PATCH] Delete .github/workflows directory Signed-off-by: Joe Grandja <10884212+jgrandja@users.noreply.github.com> --- .../continuous-integration-workflow.yml | 55 ------------------- .github/workflows/pr-build-workflow.yml | 25 --------- .../update-scheduled-release-version.yml | 10 ---- 3 files changed, 90 deletions(-) delete mode 100644 .github/workflows/continuous-integration-workflow.yml delete mode 100644 .github/workflows/pr-build-workflow.yml delete mode 100644 .github/workflows/update-scheduled-release-version.yml diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml deleted file mode 100644 index c0c33350..00000000 --- a/.github/workflows/continuous-integration-workflow.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Build and Deploy - -on: - push: - branches: - - '**' - schedule: - - cron: '0 10 * * *' # Once per day at 10am UTC - workflow_dispatch: - -jobs: - build: - name: Build - uses: spring-io/spring-security-release-tools/.github/workflows/build.yml@v1 - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - jdk: [17] - with: - runs-on: ${{ matrix.os }} - java-version: ${{ matrix.jdk }} - distribution: temurin - secrets: inherit - test: - name: Test Against Snapshots - uses: spring-io/spring-security-release-tools/.github/workflows/test.yml@v1 - with: - test-args: --refresh-dependencies --stacktrace -PforceMavenRepositories=snapshot -PspringFrameworkVersion=6.0.+ -PspringSecurityVersion=6.0.+ - secrets: inherit - deploy-artifacts: - name: Deploy Artifacts - needs: [build, test] - uses: spring-io/spring-security-release-tools/.github/workflows/deploy-artifacts.yml@v1 - with: - should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }} - secrets: inherit - deploy-docs: - name: Deploy Docs - needs: [build, test] - uses: spring-io/spring-security-release-tools/.github/workflows/deploy-docs.yml@v1 - with: - should-deploy-docs: ${{ needs.build.outputs.should-deploy-artifacts }} - secrets: inherit - perform-release: - name: Perform Release - needs: [deploy-artifacts, deploy-docs] - uses: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml@v1 - with: - should-perform-release: ${{ needs.deploy-artifacts.outputs.artifacts-deployed }} - project-version: ${{ needs.deploy-artifacts.outputs.project-version }} - milestone-repo-url: https://repo.spring.io/artifactory/milestone - release-repo-url: https://repo1.maven.org/maven2 - artifact-path: org/springframework/security/spring-security-oauth2-authorization-server - slack-announcing-id: spring-authorization-server-announcing - secrets: inherit \ No newline at end of file diff --git a/.github/workflows/pr-build-workflow.yml b/.github/workflows/pr-build-workflow.yml deleted file mode 100644 index 8621c2b6..00000000 --- a/.github/workflows/pr-build-workflow.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: PR build - -on: - pull_request: - branches: - - '**' - -jobs: - build: - name: Build - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - jdk: [17] - fail-fast: false - steps: - - uses: actions/checkout@v3 - - name: Set up JDK ${{ matrix.jdk }} - uses: spring-io/spring-gradle-build-action@v2 - with: - java-version: ${{ matrix.jdk }} - distribution: 'temurin' - - name: Build with Gradle - run: ./gradlew clean build diff --git a/.github/workflows/update-scheduled-release-version.yml b/.github/workflows/update-scheduled-release-version.yml deleted file mode 100644 index 5c0a574c..00000000 --- a/.github/workflows/update-scheduled-release-version.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: Update Scheduled Release Version - -on: - workflow_dispatch: # Manual trigger only. Triggered by release-scheduler.yml on main. - -jobs: - update-scheduled-release-version: - name: Update Scheduled Release Version - uses: spring-io/spring-security-release-tools/.github/workflows/update-scheduled-release-version.yml@v1 - secrets: inherit