diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 993f53c..9a5cab9 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -14,7 +14,7 @@ jobs: build_sdist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -33,7 +33,7 @@ jobs: matrix: python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 3592568..cdd1df2 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -9,6 +9,6 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 - uses: pre-commit/action@v3.0.0 diff --git a/CHANGES b/CHANGES index ddd8e5c..b0cea4e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1.2.9-7 | 2024-06-21 19:41:47 +0200 + + * Bump actions/checkout from 3 to 4 (dependabot[bot]) + 1.2.9-5 | 2024-06-21 19:28:45 +0200 * Stop building binary wheels (Benjamin Bannier, Corelight) diff --git a/VERSION b/VERSION index c106845..f036849 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.9-5 +1.2.9-7 diff --git a/zeekscript/__init__.py b/zeekscript/__init__.py index 7eb763d..25a543c 100644 --- a/zeekscript/__init__.py +++ b/zeekscript/__init__.py @@ -1,5 +1,5 @@ """Wrapper around more low-level tests.""" -__version__ = "1.2.9-5" +__version__ = "1.2.9-7" __all__ = ["cli", "error", "formatter", "node", "output", "script"] from .cli import *