From b5370b8ad4c24c75125ce8d580fc437eb0ccdf22 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg <5248162+sjohnr@users.noreply.github.com> Date: Thu, 2 May 2024 15:13:43 -0500 Subject: [PATCH 1/3] Build docs on every push --- .github/workflows/deploy-docs.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 381d0877..5d009a87 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -1,14 +1,22 @@ name: Deploy Docs + on: push: - tags: '**' + branches-ignore: + - "gh-pages" + - "dependabot/**" + - "0.4.x" + - "1.0.x" + - "1.1.x" + tags: + - "**" repository_dispatch: types: request-build-reference # legacy - #schedule: - #- cron: '0 10 * * *' # Once per day at 10am UTC workflow_dispatch: + permissions: actions: write + jobs: build: runs-on: ubuntu-latest From 2712c209ef56cd3bc9add52f44a64170d90c3d15 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg <5248162+sjohnr@users.noreply.github.com> Date: Thu, 2 May 2024 15:17:25 -0500 Subject: [PATCH 2/3] Update to actions/checkout@v4 Issue gh-1605 --- .github/workflows/pr-build-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-build-workflow.yml b/.github/workflows/pr-build-workflow.yml index 8621c2b6..1c613347 100644 --- a/.github/workflows/pr-build-workflow.yml +++ b/.github/workflows/pr-build-workflow.yml @@ -15,7 +15,7 @@ jobs: jdk: [17] fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} uses: spring-io/spring-gradle-build-action@v2 with: From 296ad71aa11aee7de46dade98c042c5ef654e065 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg <5248162+sjohnr@users.noreply.github.com> Date: Thu, 2 May 2024 15:18:52 -0500 Subject: [PATCH 3/3] Update to actions/checkout@v4 Closes gh-1605 --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release-scheduler.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 5d009a87..e7b6fd25 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -23,7 +23,7 @@ jobs: if: github.repository_owner == 'spring-projects' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: docs-build fetch-depth: 1 diff --git a/.github/workflows/release-scheduler.yml b/.github/workflows/release-scheduler.yml index 75413eda..dafb100c 100644 --- a/.github/workflows/release-scheduler.yml +++ b/.github/workflows/release-scheduler.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: Dispatch