Skip to content

Commit 238572a

Browse files
build(deps): bump the github-actions group across 1 directory with 2 updates (#1392)
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [docker/metadata-action](https://github.com/docker/metadata-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `docker/metadata-action` from 5.9.0 to 5.10.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@318604b...c299e40) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: 5.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2204230 commit 238572a

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

.github/workflows/build-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
BUILD_ARCH: ${{ matrix.BUILD_ARCH }}
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- uses: actions/download-artifact@v6
2525
with:
2626
name: package-parts-linux-${{ matrix.BUILD_ARCH }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
BUILD_ARCHITECTURE: ${{ matrix.arch }}
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Build
4646
run: |
4747
uname -a

.github/workflows/cache.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
packages: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- uses: actions/download-artifact@v6
3131
with:
@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Extract metadata (tags, labels) for Test Container
4545
id: test-meta
46-
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
46+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
4747
with:
4848
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4949
tags: |
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Extract metadata (tags, labels) for Container
6767
id: meta
68-
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
68+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
6969
with:
7070
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7171
tags: |

.github/workflows/catalog-info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: read
1919
packages: read
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222

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

.github/workflows/generate-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
include: ${{ steps.generate.outputs.matrix }}
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- id: generate
2525
run: |
2626
MATRIX=$(.ci/generate_package_lifecycle_test_matrix.sh | jq --raw-input --slurp -c 'split("\n") | map(select(length > 0)) | map(split(",")) | map({ "item": . } )')

.github/workflows/loop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
DOCKERFILE: ${{ matrix.dockerfile }}
3333
LOOPS: '50'
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636

3737
- name: Prepare
3838
run: make -f .ci/Makefile prepare

.github/workflows/phpt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
- "8.3"
3131
- "8.4"
3232
steps:
33-
# - uses: actions/checkout@v5
33+
# - uses: actions/checkout@v6
3434
# - name: Fetch and extract latest release of apm-agent-php
3535
# run: |
3636
# 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
3737
# mkdir -p agent/native/_build/linux-x86-64-release/ext/
3838
# cd agent/native/_build/linux-x86-64-release/ext/
3939
# tar --wildcards --strip-components 5 -xf /tmp/apm-agent-php-linux-x86-64.tar ./opt/elastic/apm-agent-php/extensions/elastic_apm*
4040
# cd -
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
- uses: actions/download-artifact@v6
4343
with:
4444
name: package-parts-linux-x86-64

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
id-token: write
5252
contents: write
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555

5656
- name: Download package artifacts
5757
uses: actions/download-artifact@v6
@@ -139,7 +139,7 @@ jobs:
139139
TAG_NAME: ${{ github.ref_name }}
140140
steps:
141141

142-
- uses: actions/checkout@v5
142+
- uses: actions/checkout@v6
143143
- uses: actions/download-artifact@v6
144144
with:
145145
name: signed-artifacts

.github/workflows/test-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
contents: read
4141
packages: read
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444

4545
- uses: actions/download-artifact@v6
4646
if: ${{ inputs.package-name }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
PHP_VERSION: ${{ matrix.php-version }}
6565
BUILD_ARCHITECTURE: ${{ matrix.data.arch }}
6666
steps:
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868
- uses: actions/download-artifact@v6
6969
with:
7070
name: package-parts-${{ matrix.data.arch }}
@@ -99,7 +99,7 @@ jobs:
9999
PHP_VERSION: ${{ matrix.php-version }}
100100
DOCKERFILE: ${{ matrix.dockerfile }}
101101
steps:
102-
- uses: actions/checkout@v5
102+
- uses: actions/checkout@v6
103103
- name: Prepare
104104
run: make -f .ci/Makefile prepare
105105
- name: Static Check / Unit tests

0 commit comments

Comments
 (0)