Skip to content

Merge pull request #91 from sublinks/dependabot/submodules/docker-e8b… #73

Merge pull request #91 from sublinks/dependabot/submodules/docker-e8b…

Merge pull request #91 from sublinks/dependabot/submodules/docker-e8b… #73

name: Go Dependency Submission
on:
push:
branches:
- main
# The API requires write permission on the repository to submit dependencies
permissions:
contents: write
jobs:
go-action-detection:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "^1.22"
- run: go version
- name: Run snapshot action
uses: actions/go-dependency-submission@v2
with:
# Required: Define the repo path to the go.mod file used by the
# build target
go-mod-path: go.mod
#
# Optional: Define the path of a build target (a file with a
# `main()` function) If not defined, this Action will collect all
# dependencies used by all build targets for the module, which may
# include Go dependencies used by tests and tooling.
go-build-target: cmd/federation.go