Skip to content

Commit e75d877

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

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.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/docker-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
run: pip install requests
4242

4343
- name: Install kubectl
44-
uses: azure/setup-kubectl@v4
44+
uses: azure/setup-kubectl@v5
4545

4646
- name: Install Helm
47-
uses: azure/setup-helm@v4
47+
uses: azure/setup-helm@v5
4848

4949
- name: Install minikube
5050
uses: medyagh/setup-minikube@latest
@@ -79,17 +79,17 @@ jobs:
7979
echo "minor=$(echo $VERSION | cut -d. -f1-2)" >> $GITHUB_OUTPUT
8080
8181
- name: Set up Docker Buildx
82-
uses: docker/setup-buildx-action@v3
82+
uses: docker/setup-buildx-action@v4
8383

8484
- name: Log in to Docker Hub
85-
uses: docker/login-action@v3
85+
uses: docker/login-action@v4
8686
with:
8787
username: blacklanternsecurity
8888
password: ${{ secrets.DOCKER_TOKEN }}
8989

9090
- name: Extract metadata
9191
id: meta
92-
uses: docker/metadata-action@v5
92+
uses: docker/metadata-action@v6
9393
with:
9494
images: blacklanternsecurity/bbot-server
9595
tags: |
@@ -101,7 +101,7 @@ jobs:
101101
type=raw,value=${{ steps.version.outputs.version }},enable=${{ github.ref == 'refs/heads/stable' }}
102102
103103
- name: Build and push Docker image
104-
uses: docker/build-push-action@v6
104+
uses: docker/build-push-action@v7
105105
with:
106106
context: .
107107
push: true
@@ -160,7 +160,7 @@ jobs:
160160
echo "version=$VERSION" >> $GITHUB_OUTPUT
161161
162162
- name: Install Helm
163-
uses: azure/setup-helm@v4
163+
uses: azure/setup-helm@v5
164164

165165
- name: Update Chart.yaml version and appVersion
166166
run: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
NO_COLOR=true uv run pytest --reruns 2 --disable-warnings --log-cli-level=INFO --cov-report xml:cov.xml --cov=bbot_server .
4444
- name: Upload Code Coverage
45-
uses: codecov/codecov-action@v5
45+
uses: codecov/codecov-action@v6
4646
with:
4747
token: ${{ secrets.CODECOV_TOKEN }}
4848
files: ./cov.xml
@@ -66,7 +66,7 @@ jobs:
6666
- name: Build PyPI package
6767
run: uv build
6868
- name: Publish PyPI package
69-
uses: pypa/gh-action-pypi-publish@release/v1.13
69+
uses: pypa/gh-action-pypi-publish@release/v1.14
7070
with:
7171
password: ${{ secrets.PYPI_API_TOKEN }}
7272
outputs:

0 commit comments

Comments
 (0)