1
0
Fork 0
mirror of https://github.com/cisagov/log4j-affected-db.git synced 2024-11-22 16:40:48 +00:00

Merge pull request #106 from cisagov/improvement/use_python_3.10_for_gha

Use Python 3.10 for the `lint` job in GitHub Actions
This commit is contained in:
Nick 2022-04-01 13:19:24 -04:00 committed by GitHub
commit 504ed9ed45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,12 +23,12 @@ jobs:
- id: setup-python - id: setup-python
uses: actions/setup-python@v3 uses: actions/setup-python@v3
with: with:
python-version: 3.9 python-version: "3.10"
# We need the Go version and Go cache location for the actions/cache step, # We need the Go version and Go cache location for the actions/cache step,
# so the Go installation must happen before that. # so the Go installation must happen before that.
- uses: actions/setup-go@v2 - uses: actions/setup-go@v2
with: with:
go-version: '1.16' go-version: "1.16"
- name: Store installed Go version - name: Store installed Go version
id: go-version id: go-version
run: | run: |