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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
gradle-wrapper-validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: gradle/actions/wrapper-validation@v4

build:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Gradle build without tests
uses: ./.github/workflows/gradle-goal
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Run muzzle check
uses: ./.github/workflows/gradle-goal
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/catalog-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
contents: read
packages: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: elastic/oblt-actions/elastic/validate-catalog@v1

4 changes: 2 additions & 2 deletions .github/workflows/pre-post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Validate release tag does not exist in repo
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
repositories: >-
["elastic-otel-java"]

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
token: ${{ steps.get_token.outputs.token }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-step-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0 # Load entire history as it is required for the get latest tag
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
outputs:
notes: ${{ steps.print_release_notes.outputs.notes }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
- name: Setup Gradle
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
- name: Create GitHub Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
is-snapshot: ${{ steps.validate-step.outputs.is-snapshot }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Warmup gradle wrapper
uses: ./.github/workflows/gradle-goal
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updatecli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get token
id: get_token
Expand Down
Loading