Updated and documented dependencies.

This commit is contained in:
Patrick Lehmann
2022-11-02 00:22:55 +01:00
parent 6285d65fd0
commit be1eaa4de4
17 changed files with 69 additions and 44 deletions

View File

@@ -85,7 +85,7 @@ The following block shows a minimal YAML workflow file:
steps:
# Clone repository
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Build your application, tool, artifacts, etc.
- name: Build
@@ -177,7 +177,7 @@ For prototyping purposes, the following job might be useful:
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || contains(github.ref, 'refs/tags/'>`__)
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
- shell: bash
run: pip install PyGithub --progress-bar off