Class: Dependabot::GithubActions::PackageManager

Inherits:
Ecosystem::VersionManager
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/github_actions/package_manager.rb

Constant Summary collapse

NAME =

The package manager name for GitHub Actions

T.let("github_actions", String)
VERSION =

The version of the package manager

T.let("1.0.0", String)

Instance Method Summary collapse

Constructor Details

#initializePackageManager

Returns a new instance of PackageManager.



22
23
24
25
26
27
# File 'lib/dependabot/github_actions/package_manager.rb', line 22

def initialize
  super(
    name: NAME,
    version: Version.new(VERSION)
)
end

Instance Method Details

#deprecated?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/dependabot/github_actions/package_manager.rb', line 30

def deprecated?
  false
end

#unsupported?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/dependabot/github_actions/package_manager.rb', line 35

def unsupported?
  false
end