Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-api-lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
BINARY_PATH: .artifacts/Elastic.Documentation.Api.Lambda/release_linux-x64/bootstrap
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
- name: Amazon Linux 2023 build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-link-index-updater-lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
BINARY_PATH: .artifacts/docs-lambda-index-publisher/release_linux-x64/bootstrap
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
- name: Amazon Linux 2023 build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
validate-assembler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Bootstrap Action Workspace
id: bootstrap
Expand All @@ -44,7 +44,7 @@ jobs:
run:
working-directory: src/Elastic.Documentation.Site
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Bootstrap Action Workspace
id: bootstrap
Expand All @@ -99,7 +99,7 @@ jobs:
integration:
runs-on: docs-builder-latest-16
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Bootstrap Action Workspace
id: bootstrap
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-major-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
create-major-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Get major version
run: |
MAJOR_VERSION=$(echo "${GITHUB_REF#refs/tags/}" | awk -F. '{print $1}')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-api-lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
ZIP_FILE: api-lambda.zip
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Download bootstrap binary
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Check license headers
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- id: repo-basename
run: 'echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT'
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Pages
id: pages
uses: actions/[email protected]
Expand All @@ -50,7 +50,7 @@ jobs:
major-version: ${{ steps.bootstrap.outputs.major-version }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Bootstrap Action Workspace
id: bootstrap
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
steps:
- name: Checkout
if: contains(fromJSON('["push", "merge_group", "workflow_dispatch"]'), github.event_name)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
needs.check.outputs.any_modified == 'true'
|| contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
major-version: ${{ steps.bootstrap.outputs.major-version }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ needs.release-drafter.outputs.tag_name }}
- name: Bootstrap Action Workspace
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
major-version: ${{ steps.bootstrap.outputs.major-version }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ needs.release-drafter.outputs.tag_name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/required-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: get-labels
run: |
labels=$(yq '[.categories[].labels] + .exclude-labels | flatten | unique | sort | @tsv' .github/release-drafter.yml | tr '\t' ',')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
landing-page-path-output: ""

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Bootstrap Action Workspace
uses: ./.github/actions/bootstrap

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: ${{ matrix.repository }}
path: test-repo
Expand Down
Loading