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/periodic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Clean up VPCs
if: steps.identify-resources.outputs.AWS_VPC_IDS != ''
uses: NVIDIA/holodeck@v0.3.2
uses: NVIDIA/holodeck@v0.3.3
with:
action: cleanup
vpc_ids: ${{ steps.identify-resources.outputs.AWS_VPC_IDS }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [v0.3.3] - 2026-04-01

### Bug Fixes

- **fix: treat InvalidVpcID.NotFound as success in VPC cleanup (#769)** — VPCs that no longer exist are now treated as successfully cleaned up instead of retrying and failing, fixing periodic cleanup failures caused by the Docker action's post-entrypoint re-running cleanup.

## [v0.3.2] - 2026-03-31

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const (
// ProgramName is the canonical name of this program
ProgramName = "holodeck"
// ProgramVersion is the current version of the program
ProgramVersion = "0.3.2"
ProgramVersion = "0.3.3"
)

type config struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/cli/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func TestNewApp(t *testing.T) {
log := logger.NewLogger()
app := NewApp(log)

if app.Version != "0.3.2" {
t.Errorf("expected app version %q, got %q", "0.3.2", app.Version)
if app.Version != "0.3.3" {
t.Errorf("expected app version %q, got %q", "0.3.3", app.Version)
}
if app.Name != "holodeck" {
t.Errorf("expected app name %q, got %q", "holodeck", app.Name)
Expand Down
Loading