Skip to content

Commit 69c794f

Browse files
committed
Merge origin/main into feature/preview-build-local
Resolve modify/delete: keep preview-build.yml removed (replaced by docs-actions migration / docs-preview-local in this repo). Made-with: Cursor
2 parents f1cd7d0 + 0c07334 commit 69c794f

157 files changed

Lines changed: 23827 additions & 2240 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/aws-auth/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
3838
f.write(f"result=arn:aws:iam::{os.environ["AWS_ACCOUNT_ID"]}:role/{prefix}{hash}")
3939
- name: Configure AWS Credentials
40-
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
40+
uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # v6.1.0
4141
with:
4242
role-to-assume: ${{ steps.role_arn.outputs.result }}
4343
aws-region: ${{ inputs.aws_region }}

.github/workflows/assembler-preview-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Delete GitHub environment
19-
uses: actions/github-script@v8
19+
uses: actions/github-script@v9
2020
id: delete-deployment
2121
with:
2222
script: |

.github/workflows/assembler-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Get PR details
3030
if: github.event_name == 'workflow_dispatch'
3131
id: pr-details
32-
uses: actions/github-script@v8
32+
uses: actions/github-script@v9
3333
env:
3434
PR_NUMBER: ${{ inputs.pr_number }}
3535
with:
@@ -62,7 +62,7 @@ jobs:
6262
persist-credentials: false
6363

6464
- name: Create Deployment
65-
uses: actions/github-script@v8
65+
uses: actions/github-script@v9
6666
id: deployment
6767
env:
6868
PR_SHA: ${{ steps.pr-details.outputs.result || github.event.pull_request.head.sha }}
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: Update Deployment Status
117117
if: always() && steps.deployment.outputs.result
118-
uses: actions/github-script@v8
118+
uses: actions/github-script@v9
119119
with:
120120
script: |
121121
await github.rest.repos.createDeploymentStatus({

.github/workflows/auto-add-needs-triage-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Add needs triage label
18-
uses: actions/github-script@v8
18+
uses: actions/github-script@v9
1919
with:
2020
script: |
2121
github.rest.issues.addLabels({

.github/workflows/comment-on-asciidoc-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Add a comment if .asciidoc files changed
3131
if: steps.check-files.outputs.any_changed == 'true'
32-
uses: actions/github-script@v8
32+
uses: actions/github-script@v9
3333
with:
3434
script: |
3535
github.rest.issues.createComment({

.github/workflows/detect-duplicate-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Detect potential duplicate issues
19-
uses: actions/github-script@v8
19+
uses: actions/github-script@v9
2020
with:
2121
script: |
2222
const { owner, repo } = context.repo;

.github/workflows/docs-preview-cleanup-local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Delete GitHub environment
21-
uses: actions/github-script@v8
21+
uses: actions/github-script@v9
2222
id: delete-deployment
2323
with:
2424
script: |

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
prefix: '${{ steps.repo-basename.outputs.value }}'
3939
- name: Upload artifact
40-
uses: actions/upload-pages-artifact@v4.0.0
40+
uses: actions/upload-pages-artifact@v5.0.0
4141
with:
4242
path: .artifacts/docs/html
4343

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
pull-requests: read
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1
21+
- uses: release-drafter/release-drafter@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7.2.0
2222
env:
2323
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
echo "This workflow is only allowed to run on the main branch."
2727
exit 1
2828
fi
29-
- uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1
29+
- uses: release-drafter/release-drafter@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7.2.0
3030
id: release-drafter
3131
env:
3232
GITHUB_TOKEN: ${{ github.token }}
3333
with:
3434
commitish: ${{ github.sha }}
3535
- name: Create tag
36-
uses: actions/github-script@v8
36+
uses: actions/github-script@v9
3737
with:
3838
script: |
3939
github.rest.git.createRef({
@@ -99,7 +99,7 @@ jobs:
9999
run: |
100100
zip -j "${ZIP_FILE}" ./bootstrap
101101
102-
- uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
102+
- uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # v6.1.0
103103
with:
104104
role-to-assume: arn:aws:iam::197730964718:role/elastic-docs-v3-link-index-updater-deployer
105105
aws-region: us-east-2
@@ -117,7 +117,6 @@ jobs:
117117

118118
release:
119119
needs:
120-
- containers
121120
- release-drafter
122121
strategy:
123122
fail-fast: false
@@ -167,6 +166,7 @@ jobs:
167166
publish-release:
168167
needs:
169168
- release
169+
- containers
170170
- release-drafter
171171
- deploy-link-index-updater-lambda-prod
172172
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)