From 2c25e1c6379eade1b89f875da555c5a93d1a3e8b Mon Sep 17 00:00:00 2001 From: Julio Estrada Date: Thu, 20 Nov 2025 18:11:37 -0500 Subject: [PATCH] update checkout actions to v6 --- .github/workflows/sync-boostlook-css.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync-boostlook-css.yml b/.github/workflows/sync-boostlook-css.yml index 4f20da8..a3d38d6 100644 --- a/.github/workflows/sync-boostlook-css.yml +++ b/.github/workflows/sync-boostlook-css.yml @@ -16,10 +16,10 @@ jobs: if: github.repository == 'boostorg/boostlook' steps: - name: Checkout current repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Checkout website-v2 repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: boostorg/website-v2 ref: develop @@ -60,11 +60,13 @@ jobs: fi - name: Trigger website-v2-docs ui-release workflow if: success() + env: + GH_TOKEN: ${{ secrets.WEBSITE_V2_PAT }} run: | - echo "${{ secrets.WEBSITE_V2_PAT }}" | gh auth login --with-token gh workflow run ui-release.yml --repo boostorg/website-v2-docs --ref develop - name: Trigger website-v2-docs publish workflow if: success() + env: + GH_TOKEN: ${{ secrets.WEBSITE_V2_PAT }} run: | - echo "${{ secrets.WEBSITE_V2_PAT }}" | gh auth login --with-token gh workflow run publish.yml --repo boostorg/website-v2-docs --ref develop