Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/architecture-analysis-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
description: Released arcade-agent package version to install, or "source" to install the checked-out repository (self-dogfooding).
required: false
type: string
default: "0.1.1"
default: "0.2.0"
install-extras:
description: Extras string appended to the arcade-agent package install.
required: false
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,17 +251,17 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: lemduc/arcade-agent/actions/analyze@v0.1.1
- uses: lemduc/arcade-agent/actions/analyze@v0.2.0
with:
arcade-agent-version: "0.1.1"
arcade-agent-version: "0.2.0"
```

Common optional inputs:

```yaml
- uses: lemduc/arcade-agent/actions/analyze@v0.1.1
- uses: lemduc/arcade-agent/actions/analyze@v0.2.0
with:
arcade-agent-version: "0.1.1"
arcade-agent-version: "0.2.0"
source-path: "."
language: ""
primary-algorithm: pkg
Expand All @@ -270,7 +270,7 @@ Common optional inputs:
```

For reproducible CI, keep `arcade-agent-version` pinned to a released package
version such as `"0.1.1"`. Avoid `latest` in shared CI because a new package
version such as `"0.2.0"`. Avoid `latest` in shared CI because a new package
release can change analyzer behavior without a workflow review.

The action stores the baseline as a GitHub Actions artifact on
Expand Down
2 changes: 1 addition & 1 deletion actions/analyze/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
arcade-agent-version:
description: Released arcade-agent package version to install.
required: false
default: "0.1.1"
default: "0.2.0"
python-version:
description: Python version used for analysis.
required: false
Expand Down
2 changes: 1 addition & 1 deletion examples/workflows/arcade-agent-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
# Copy this file to .github/workflows/arcade-agent-analysis.yml in any repository
# that should run arcade-agent architecture analysis.
env:
ARCADE_AGENT_VERSION: "0.1.1"
ARCADE_AGENT_VERSION: "0.2.0"
PYTHON_VERSION: "3.12"
INSTALL_EXTRAS: "[languages]"
SOURCE_PATH: "."
Expand Down
Loading