We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797d61c commit 1601156Copy full SHA for 1601156
.github/workflows/license-audit.yml
@@ -4,18 +4,16 @@ on: [push, pull_request]
4
5
jobs:
6
license-audit:
7
- # TODO: a GH action update broke the 'ubuntu-latest' image
8
- # when it's fixed, we should switch back
9
- runs-on: ubuntu-20.04
+ runs-on: 'ubuntu-latest'
10
11
steps:
12
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v2
13
14
- name: Set up Python
15
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v2
16
with:
17
- # License Finder's Docker image uses Python 3.5
18
- python-version: 3.5
+ # License Finder's Docker image uses Python 3.10
+ python-version: '3.10'
19
20
- name: Fetch decisions.yml
21
run: curl https://raw.githubusercontent.com/bugsnag/license-audit/master/config/decision_files/global.yml -o decisions.yml
0 commit comments