Skip to content

Commit 6f4e0fa

Browse files
Bump the github-actions group across 1 directory with 7 updates
Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/github-script](https://github.com/actions/github-script) | `8` | `9` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [pypa/gh-action-pypi-publish@release/v1.13](https://github.com/pypa/gh-action-pypi-publish) | `1.13` | `1.14` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) Updates `actions/create-github-app-token` from 1 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v1...v3) Updates `codecov/codecov-action` from 5 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `pypa/gh-action-pypi-publish@release/v1.13` from 1.13 to 1.14 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@release/v1.13...release/v1.14) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) --- 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: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: '7' 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/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish@release/v1.13 dependency-version: '1.14' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5be4993 commit 6f4e0fa

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
# Comment on PR with benchmark results
6565
- name: Comment benchmark results on PR
66-
uses: actions/github-script@v8
66+
uses: actions/github-script@v9
6767
with:
6868
script: |
6969
const fs = require('fs');

.github/workflows/cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Generate token from GitHub App
1717
id: app-token
18-
uses: actions/create-github-app-token@v1
18+
uses: actions/create-github-app-token@v3
1919
with:
2020
app-id: ${{ secrets.APP_ID }}
2121
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
name: pytest-debug-logs-${{ env.PYTHON_VERSION }}
4747
path: pytest_debug.log
4848
- name: Upload Code Coverage
49-
uses: codecov/codecov-action@v5
49+
uses: codecov/codecov-action@v6
5050
with:
5151
token: ${{ secrets.CODECOV_TOKEN }}
5252
files: ./cov.xml
@@ -61,9 +61,9 @@ jobs:
6161
with:
6262
fetch-depth: 0
6363
- name: Set up Docker Buildx
64-
uses: docker/setup-buildx-action@v3
64+
uses: docker/setup-buildx-action@v4
6565
- name: Login to Docker Hub
66-
uses: docker/login-action@v3
66+
uses: docker/login-action@v4
6767
with:
6868
username: ${{ secrets.DOCKER_USERNAME }}
6969
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -105,7 +105,7 @@ jobs:
105105
run: uv build
106106
- name: Publish Pypi package
107107
if: github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/dev'
108-
uses: pypa/gh-action-pypi-publish@release/v1.13
108+
uses: pypa/gh-action-pypi-publish@release/v1.14
109109
with:
110110
password: ${{ secrets.PYPI_API_TOKEN }}
111111
- name: Get BBOT version
@@ -121,7 +121,7 @@ jobs:
121121
echo "BBOT_VERSION_MAJOR=$MAJOR" >> $GITHUB_OUTPUT
122122
- name: Publish to Docker Hub (dev)
123123
if: github.event_name == 'push' && github.ref == 'refs/heads/dev'
124-
uses: docker/build-push-action@v6
124+
uses: docker/build-push-action@v7
125125
with:
126126
push: true
127127
context: .
@@ -130,7 +130,7 @@ jobs:
130130
blacklanternsecurity/bbot:${{ steps.version.outputs.BBOT_VERSION }}
131131
- name: Publish to Docker Hub (stable)
132132
if: github.event_name == 'push' && github.ref == 'refs/heads/stable'
133-
uses: docker/build-push-action@v6
133+
uses: docker/build-push-action@v7
134134
with:
135135
push: true
136136
context: .
@@ -142,7 +142,7 @@ jobs:
142142
blacklanternsecurity/bbot:${{ steps.version.outputs.BBOT_VERSION_MAJOR }}
143143
- name: Publish Full Docker Image to Docker Hub (dev)
144144
if: github.event_name == 'push' && github.ref == 'refs/heads/dev'
145-
uses: docker/build-push-action@v6
145+
uses: docker/build-push-action@v7
146146
with:
147147
push: true
148148
file: Dockerfile.full
@@ -152,7 +152,7 @@ jobs:
152152
blacklanternsecurity/bbot:${{ steps.version.outputs.BBOT_VERSION }}-full
153153
- name: Publish Full Docker Image to Docker Hub (stable)
154154
if: github.event_name == 'push' && github.ref == 'refs/heads/stable'
155-
uses: docker/build-push-action@v6
155+
uses: docker/build-push-action@v7
156156
with:
157157
push: true
158158
file: Dockerfile.full

0 commit comments

Comments
 (0)