Skip to content

Commit 6777800

Browse files
committed
setup-python latest
1 parent bd080b7 commit 6777800

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/code-static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@v4
3636
- name: Set up Python 3.12
3737
if: ${{ matrix.language == 'python' }}
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python
3939
with:
4040
python-version: '3.12'
4141
- name: Install dependencies

.github/workflows/predeploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: '20'
2828
- name: Set up Python 3.12
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python
3030
with:
3131
python-version: '3.12'
3232
- name: Run the website

.github/workflows/test-website.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
node-version: '20'
2727
- name: Set up Python 3.12
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python
2929
with:
3030
python-version: '3.12'
3131
- name: Run the website

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"deploy": "./tools/scripts/deploy.sh",
2626
"timestamps": "node ./tools/generate/generate_timestamps",
2727
"lint": "run-script-os",
28-
"lint:darwin:linux": "docker container run -it --rm -v \"$PWD\":/app -w /app --entrypoint=./tools/scripts/run_linter_locally.sh super-linter/super-linter",
29-
"lint:win32": "docker container run --rm -v \"%cd%\":/app -w /app/ --entrypoint=./tools/scripts/run_linter_locally.sh super-linter/super-linter",
28+
"lint:darwin:linux": "docker container run -it --rm -v \"$PWD\":/app -w /app --entrypoint=./tools/scripts/run_linter_locally.sh ghcr.io/super-linter/super-linter",
29+
"lint:win32": "docker container run --rm -v \"%cd%\":/app -w /app/ --entrypoint=./tools/scripts/run_linter_locally.sh ghcr.io/super-linter/super-linter",
3030
"pytest": "pytest --cov server --cov-fail-under=100 --cov-report=term-missing -s",
3131
"test": "node ./tools/test"
3232
},

0 commit comments

Comments
 (0)