Bump github.com/ory/x from 0.0.597 to 0.0.605 #426
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# so far, only go.list replacement | |
# TODO: gather licenses of dependencies | |
name: Upload go.list | |
on: push | |
env: | |
GITHUB_SHA: ${{ github.sha }} | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Generate | |
uses: cedrickring/[email protected] | |
with: | |
args: go list -m all > go.list | |
- name: Upload | |
uses: actions/upload-artifact@v2 | |
with: | |
name: go.list | |
path: go.list | |
retention-days: 30 |