Skip to content
Open
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-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
BUILD_ARCH: ${{ matrix.BUILD_ARCH }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: package-parts-linux-${{ matrix.BUILD_ARCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
env:
BUILD_ARCHITECTURE: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: |
uname -a
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: actions/download-artifact@v6
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@v5
- uses: actions/checkout@v6

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

2 changes: 1 addition & 1 deletion .github/workflows/generate-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
outputs:
include: ${{ steps.generate.outputs.matrix }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: generate
run: |
MATRIX=$(.ci/generate_package_lifecycle_test_matrix.sh | jq --raw-input --slurp -c 'split("\n") | map(select(length > 0)) | map(split(",")) | map({ "item": . } )')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
DOCKERFILE: ${{ matrix.dockerfile }}
LOOPS: '50'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Prepare
run: make -f .ci/Makefile prepare
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
- "8.3"
- "8.4"
steps:
# - uses: actions/checkout@v5
# - uses: actions/checkout@v6
# - name: Fetch and extract latest release of apm-agent-php
# run: |
# wget https://github.com/elastic/apm-agent-php/releases/latest/download/apm-agent-php-linux-x86-64.tar -O /tmp/apm-agent-php-linux-x86-64.tar
# mkdir -p agent/native/_build/linux-x86-64-release/ext/
# cd agent/native/_build/linux-x86-64-release/ext/
# tar --wildcards --strip-components 5 -xf /tmp/apm-agent-php-linux-x86-64.tar ./opt/elastic/apm-agent-php/extensions/elastic_apm*
# cd -
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: package-parts-linux-x86-64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
id-token: write
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Download package artifacts
uses: actions/download-artifact@v6
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
TAG_NAME: ${{ github.ref_name }}
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: signed-artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
contents: read
packages: read
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/download-artifact@v6
if: ${{ inputs.package-name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
PHP_VERSION: ${{ matrix.php-version }}
BUILD_ARCHITECTURE: ${{ matrix.data.arch }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: package-parts-${{ matrix.data.arch }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
PHP_VERSION: ${{ matrix.php-version }}
DOCKERFILE: ${{ matrix.dockerfile }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Prepare
run: make -f .ci/Makefile prepare
- name: Static Check / Unit tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updatecli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: read
packages: read
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Get token
id: get_token
Expand Down
Loading