Skip to content

Commit

Permalink
Fix gh-actions checkout action version deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Tiefenbacher committed Oct 12, 2024
1 parent b4d0cdc commit 629f6a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/discogs_client-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Set up Python 3.12
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.12

Expand Down

0 comments on commit 629f6a4

Please sign in to comment.