Skip to content

Commit a0b422a

Browse files
authored
Merge branch 'main' into gh-oblt/add-dependabot-pre-commit
2 parents 97025ac + 6b1941a commit a0b422a

16 files changed

Lines changed: 61 additions & 45 deletions

.github/workflows/build-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v6
2323

2424
- name: Login to ghcr.io
25-
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
25+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
2626
with:
2727
registry: ${{ env.REGISTRY }}
2828
username: ${{ github.actor }}

.github/workflows/docs-build.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
name: docs-build
2-
32
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
45
push:
5-
branches:
6-
- main
7-
pull_request_target: ~
6+
branches: [main]
87
merge_group: ~
9-
8+
permissions:
9+
contents: read
10+
pull-requests: read
1011
jobs:
11-
docs-preview:
12-
uses: elastic/docs-builder/.github/workflows/preview-build.yml@main
12+
build:
13+
uses: elastic/docs-actions/.github/workflows/docs-build.yml@v1
1314
with:
1415
enable-vale-linting: true
15-
path-pattern: docs/**
16-
permissions:
17-
deployments: write
18-
id-token: write
19-
contents: read
20-
pull-requests: write

.github/workflows/docs-cleanup.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/docs-deploy.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: docs-deploy
2+
on:
3+
workflow_run:
4+
workflows: [docs-build]
5+
types: [completed]
6+
permissions:
7+
contents: read
8+
deployments: write
9+
id-token: write
10+
pull-requests: write
11+
actions: read
12+
jobs:
13+
deploy:
14+
uses: elastic/docs-actions/.github/workflows/docs-deploy.yml@v1
15+
with:
16+
enable-vale-linting: true
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: docs-preview-cleanup
2+
on:
3+
pull_request_target:
4+
types: [closed]
5+
permissions:
6+
contents: none
7+
deployments: write
8+
id-token: write
9+
jobs:
10+
cleanup:
11+
uses: elastic/docs-actions/.github/workflows/docs-preview-cleanup.yml@v1

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Get token
2222
id: get_token
23-
uses: actions/create-github-app-token@v2
23+
uses: actions/create-github-app-token@v3
2424
with:
2525
app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }}
2626
private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,12 @@ jobs:
124124
- uses: actions/checkout@v6
125125

126126
- name: Set up Docker Buildx
127-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
127+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
128128
with:
129129
cache-binary: false
130130

131131
- name: Log in to the Elastic Container registry
132-
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
132+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
133133
with:
134134
registry: ${{ secrets.ELASTIC_DOCKER_REGISTRY }}
135135
username: ${{ secrets.ELASTIC_DOCKER_USERNAME }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,6 @@ jobs:
231231
with:
232232
name: html-coverage-report
233233
path: htmlcov
234-
- uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # 5.1.0
234+
- uses: geekyeggo/delete-artifact@176a747ab7e287e3ff4787bf8a148716375ca118 # 6.0.0
235235
with:
236236
name: coverage-reports-*

.github/workflows/updatecli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919

2020
- name: Get token
2121
id: get_token
22-
uses: actions/create-github-app-token@v2
22+
uses: actions/create-github-app-token@v3
2323
with:
2424
app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }}
2525
private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }}
2626
permission-contents: write
2727
permission-pull-requests: write
2828

29-
- uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
29+
- uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
3030
with:
3131
registry: ghcr.io
3232
username: ${{ github.actor }}

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
updatecli v0.114.0
1+
updatecli v0.115.0

0 commit comments

Comments
 (0)