Skip to content

Commit 18304b0

Browse files
chore(deps): bump the github-actions group with 6 updates
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `2` | `3` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.12.0` | `4.0.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.10.0` | `6.0.0` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.19.2` | `7.0.0` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `2.1.1` | `3.0.1` | Updates `actions/create-github-app-token` from 2 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v2...v3) Updates `docker/setup-buildx-action` from 3.12.0 to 4.0.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@8d2750c...4d04d5d) Updates `docker/metadata-action` from 5.10.0 to 6.0.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@c299e40...030e881) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/build-push-action` from 6.19.2 to 7.0.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@10e90e3...d08e5c3) Updates `slackapi/slack-github-action` from 2.1.1 to 3.0.1 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](slackapi/slack-github-action@v2.1.1...v3.0.1) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: slackapi/slack-github-action dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f73acda commit 18304b0

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/labeler.yml

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

.github/workflows/release-mockopampserver.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
package-manager-cache: false
3535

3636
# Multiple steps to push a docker image.
37-
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
37+
- uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3838
with:
3939
# NOTE: disable the cache poisoning vector attack
4040
cache-binary: false
4141

4242
- id: docker-meta
43-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
43+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
4444
with:
4545
images: ${{ env.DOCKER_IMAGE_NAME }}
4646
flavor: |
@@ -52,14 +52,14 @@ jobs:
5252
org.opencontainers.image.vendor=Elastic
5353
org.opencontainers.image.title=mockopampserver
5454
org.opencontainers.image.description=A mock OpAMP server, for dev and testing
55-
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
55+
- uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
5656
with:
5757
registry: ghcr.io
5858
username: ${{ github.actor }}
5959
password: ${{ secrets.GITHUB_TOKEN }}
6060
- name: Build and push Docker image
6161
id: docker-push
62-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
62+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
6363
with:
6464
context: ${{ env.PKGDIR }}
6565
platforms: linux/amd64,linux/arm64

.github/workflows/release-mockotlpserver.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
package-manager-cache: false
3535

3636
# Push a Docker image.
37-
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
37+
- uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3838
with:
3939
# NOTE: disable the cache poisoning vector attack
4040
cache-binary: false
4141

4242
- id: docker-meta
43-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
43+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
4444
with:
4545
images: ${{ env.DOCKER_IMAGE_NAME }}
4646
flavor: |
@@ -52,14 +52,14 @@ jobs:
5252
org.opencontainers.image.vendor=Elastic
5353
org.opencontainers.image.title=mockotlpserver
5454
org.opencontainers.image.description=A mock OTLP server, for dev and testing
55-
- uses: docker/login-action@v3
55+
- uses: docker/login-action@v4
5656
with:
5757
registry: ghcr.io
5858
username: ${{ github.actor }}
5959
password: ${{ secrets.GITHUB_TOKEN }}
6060
- name: Build and push Docker image
6161
id: docker-push
62-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
62+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
6363
with:
6464
context: ${{ env.PKGDIR }}
6565
platforms: linux/amd64,linux/arm64

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,21 @@ jobs:
4141
# Setup a Docker "buildx" builder container, used by "build-push-action"
4242
# below for multi-platform image builds. Notes on multi-platform images:
4343
# https://github.com/elastic/apm-agent-nodejs/issues/4038#issuecomment-2130406402
44-
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
44+
- uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
4545
with:
4646
# NOTE: disable the cache poisoning vector attack
4747
cache-binary: false
4848

4949
- name: Log in to the Elastic Container registry
50-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
50+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
5151
with:
5252
registry: ${{ secrets.ELASTIC_DOCKER_REGISTRY }}
5353
username: ${{ secrets.ELASTIC_DOCKER_USERNAME }}
5454
password: ${{ secrets.ELASTIC_DOCKER_PASSWORD }}
5555

5656
- name: Extract metadata (tags, labels)
5757
id: docker-meta
58-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
58+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
5959
with:
6060
images: ${{ env.DOCKER_IMAGE_NAME }}
6161
flavor: |
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: Build and Push Docker Image
7474
id: docker-push
75-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
75+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
7676
with:
7777
context: .
7878
platforms: linux/amd64,linux/arm64

.github/workflows/slack-lite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
f.write("payload={}".format(json.dumps(payload)))
120120
121121
- name: Post Slack message
122-
uses: slackapi/slack-github-action@v2.1.1
122+
uses: slackapi/slack-github-action@v3.0.1
123123
with:
124124
method: chat.postMessage
125125
token: ${{ secrets.SLACK_BOT_TOKEN }}

0 commit comments

Comments
 (0)