diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index cf61f78b6d..9bc476bb29 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -63,7 +63,7 @@ jobs: # Comment on PR with benchmark results - name: Comment benchmark results on PR - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 3fadea2fe3..ecb38fc933 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Generate token from GitHub App id: app-token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.APP_ID }} private-key: ${{ secrets.APP_PRIVATE_KEY }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8cddad737e..acb97286d2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -46,7 +46,7 @@ jobs: name: pytest-debug-logs-${{ env.PYTHON_VERSION }} path: pytest_debug.log - name: Upload Code Coverage - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./cov.xml @@ -61,9 +61,9 @@ jobs: with: fetch-depth: 0 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -99,7 +99,7 @@ jobs: run: uv build - name: Publish Pypi package if: github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/dev' - uses: pypa/gh-action-pypi-publish@release/v1.13 + uses: pypa/gh-action-pypi-publish@release/v1.14 with: password: ${{ secrets.PYPI_API_TOKEN }} - name: Get BBOT version @@ -115,7 +115,7 @@ jobs: echo "BBOT_VERSION_MAJOR=$MAJOR" >> $GITHUB_OUTPUT - name: Publish to Docker Hub (dev) if: github.event_name == 'push' && github.ref == 'refs/heads/dev' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: push: true context: . @@ -126,7 +126,7 @@ jobs: blacklanternsecurity/bbot:${{ steps.version.outputs.BBOT_VERSION_MAJOR }} - name: Publish to Docker Hub (stable) if: github.event_name == 'push' && github.ref == 'refs/heads/stable' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: push: true context: . @@ -138,7 +138,7 @@ jobs: blacklanternsecurity/bbot:${{ steps.version.outputs.BBOT_VERSION_MAJOR }} - name: Publish Full Docker Image to Docker Hub (dev) if: github.event_name == 'push' && github.ref == 'refs/heads/dev' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: push: true file: Dockerfile.full @@ -150,7 +150,7 @@ jobs: blacklanternsecurity/bbot:${{ steps.version.outputs.BBOT_VERSION_MAJOR }}-full - name: Publish Full Docker Image to Docker Hub (stable) if: github.event_name == 'push' && github.ref == 'refs/heads/stable' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: push: true file: Dockerfile.full