Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
61e8281
first draft
May 12, 2022
554a03e
add API page
May 12, 2022
5564563
link to dep graph page
May 12, 2022
ce4e467
allow ref to repo
May 12, 2022
c239983
fix typo
May 12, 2022
3a79635
Merge branch 'main' into ske-dep-api
May 12, 2022
83c1d43
typo
May 19, 2022
f85983a
Merge branch 'main' into ske-dep-api
Jun 9, 2022
9295f8a
updates for example workflow
saritai Jun 14, 2022
6f06aaf
use reusables for github-owned actions
saritai Jun 14, 2022
e74a411
updated language based on feedback
saritai Jun 14, 2022
55cb5a1
tbd table for actions
saritai Jun 14, 2022
d12b5c1
update language for table
saritai Jun 14, 2022
872bd3c
update versioning to 3.7
saritai Jun 14, 2022
723444d
Apply suggestions from code review
saritai Jun 15, 2022
7612d9e
updates based on feedback!
saritai Jun 15, 2022
94206d8
fix apostrophe issue
saritai Jun 15, 2022
dcfd5a4
updates to API page
saritai Jun 15, 2022
e584ac5
add info on viewing submitted dependencies in dep graph
saritai Jun 15, 2022
57b1eb7
updating language around API submissions
saritai Jun 15, 2022
2655a97
quick updates
saritai Jun 15, 2022
626f5f7
remove version updates reference
saritai Jun 15, 2022
8eb506a
Update dependency-submission.md
saritai Jun 16, 2022
aeafa49
fixed link and intro in rest doc
saritai Jun 16, 2022
2cac989
Apply suggestions from code review
saritai Jun 16, 2022
7eedfe6
add correlator explanation
saritai Jun 16, 2022
0f4c534
add version updates
saritai Jun 16, 2022
36de6c9
add mention of Dependabot supported ecosystems
saritai Jun 16, 2022
32435e8
Update content/code-security/supply-chain-security/understanding-your…
saritai Jun 16, 2022
6742781
Update OpenAPI Descriptions
github-openapi-bot Jun 16, 2022
065eb19
Add decorated OpenAPI schema files
github-openapi-bot Jun 16, 2022
b672b23
Merge branch 'main' into ske-dep-api
saritai Jun 16, 2022
4604b86
Merge pull request #28585 from github/openapi-update-09b3d964114fa896…
saritai Jun 16, 2022
55d6ed9
adding ephemeral runner known issue (#28510)
Pantelis-Santorinios Jun 17, 2022
bbf856c
Merge branch 'main' into ske-dep-api
saritai Jun 17, 2022
b4be9fc
Merge pull request #27653 from github/ske-dep-api
saritai Jun 17, 2022
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
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Courtney Claessens <[email protected]>
  • Loading branch information
saritai and courtneycl authored Jun 16, 2022
commit 2cac98958c60eb6c1e916d1c9ce49dcf5384ec6c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ on:
push:
branches:
- main

# The API requires write permission on the repository to submit dependencies
permissions:
contents: write

# Envionment variables to configure Go and Go modules. Customize as necessary
env:
GOPROXY: '' # A Go Proxy server to be used
Expand All @@ -50,11 +55,13 @@ jobs:
steps:
- name: 'Checkout Repository'
uses: {% data reusables.actions.action-checkout %}

- uses: {% data reusables.actions.action-setup-go %}
with:
go-version: ">=1.18.0"

- name: Run snapshot action
uses: @dsp-testing/go-snapshot-action
uses: @actions/go-dependency-submission@main
with:
# Required: Define the repo path to the go.mod file used by the
# build target
Expand Down