diff --git a/action.yml b/action.yml index 2c272f4..ae69235 100644 --- a/action.yml +++ b/action.yml @@ -4,13 +4,7 @@ author: "Socket" runs: using: "docker" - # TODO (v2.0.0 release PR): update this to the pre-built GHCR image. - # The release PR MUST include all three of these changes together: - # 1. version.py + pyproject.toml → 2.0.0 - # 2. This line → docker://ghcr.io/socketdev/socket-basics:2.0.0 - # 3. Merge, then run publish-docker workflow_dispatch BEFORE creating the git tag - # See docs/github-action.md → "Release workflow" for the full process. - image: "Dockerfile" + image: "docker://ghcr.io/socketdev/socket-basics:2.0.0" env: # Core GitHub variables (these are automatically available, but we explicitly pass GITHUB_TOKEN) GITHUB_TOKEN: ${{ inputs.github_token }} diff --git a/pyproject.toml b/pyproject.toml index f424918..f6decde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "socket_basics" -version = "1.1.3" +version = "2.0.0" description = "Socket Basics with integrated SAST, secret scanning, and container analysis" readme = "README.md" requires-python = ">=3.10" diff --git a/socket_basics/version.py b/socket_basics/version.py index 0b2f79d..8c0d5d5 100644 --- a/socket_basics/version.py +++ b/socket_basics/version.py @@ -1 +1 @@ -__version__ = "1.1.3" +__version__ = "2.0.0"