-
-
Notifications
You must be signed in to change notification settings - Fork 801
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Specify minimum python version for docker build workflow (cherry picked from commit 18c55b30b81aef66c131a960586b52d655a621f9) * Specify python version for translation checker (cherry picked from commit 14360507f5c9d77ed8321755aab25a79fbcf10f9) * Disable social media workflow (has never worked, anyway) (cherry picked from commit 56fbcbeae25b165978d149aa484ae7335f8f67a4)
- Loading branch information
1 parent
121d68a
commit 0fd1390
Showing
3 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,16 @@ jobs: | |
INVENTREE_MEDIA_ROOT: ./media | ||
INVENTREE_STATIC_ROOT: ./static | ||
INVENTREE_BACKUP_DIR: ./backup | ||
python_version: 3.9 | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # [email protected] | ||
- name: Set Up Python ${{ env.python_version }} | ||
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # [email protected] | ||
with: | ||
python-version: ${{ env.python_version }} | ||
cache: 'pip' | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,10 +30,15 @@ jobs: | |
id-token: write | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
python_version: 3.9 | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # [email protected] | ||
- name: Set Up Python ${{ env.python_version }} | ||
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # [email protected] | ||
with: | ||
python-version: ${{ env.python_version }} | ||
cache: 'pip' | ||
- name: Version Check | ||
run: | | ||
pip install requests | ||
|
File renamed without changes.