From dde69dde61e57fa929596294f6b4e8f798f5598e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 2 Jul 2026 22:59:40 +0900 Subject: internal/pkg: rename inputs method Inputs is more correct than dependencies in the current terminology. Signed-off-by: Ophestra --- internal/pkg/tar.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/pkg/tar.go') diff --git a/internal/pkg/tar.go b/internal/pkg/tar.go index 9173a976..f1861edd 100644 --- a/internal/pkg/tar.go +++ b/internal/pkg/tar.go @@ -58,8 +58,8 @@ func init() { }) } -// Dependencies returns a slice containing the backing file. -func (a *tarArtifact) Dependencies() []Artifact { +// Inputs returns a slice containing the backing file. +func (a *tarArtifact) Inputs() []Artifact { return []Artifact{a.f} } -- cgit v1.3.1