Skip to content

Commit b8efe54

Browse files
committed
attempt to fix workflows
1 parent f46d9d1 commit b8efe54

File tree

5 files changed

+5
-20
lines changed

5 files changed

+5
-20
lines changed

.github/workflows/codeql.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,6 @@ jobs:
5656
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
5757
# queries: security-extended,security-and-quality
5858

59-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
60-
# If this step fails, then you should remove it and run the build manually (see below)
61-
- name: Autobuild
62-
uses: github/codeql-action/autobuild@v3
63-
64-
# ℹ️ Command-line programs to run using the OS shell.
65-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
66-
67-
# If the Autobuild fails above, remove it and uncomment the following three lines.
68-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
69-
70-
# - run: |
71-
# echo "Run, Build Application using script"
72-
# ./location_of_script_within_repo/buildscript.sh
73-
7459
- name: Perform CodeQL Analysis
7560
uses: github/codeql-action/analyze@v3
7661
with:

.github/workflows/publish-develop-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13-
- uses: actions/checkout@v5
13+
- uses: actions/setup-python@v5
1414
with:
1515
python-version: 3.x
1616
- run: pip install -r requirements/build-docs.txt

.github/workflows/publish-py.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set up Python
16-
uses: actions/checkout@v5
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.x"
1919
- name: Install dependencies

.github/workflows/publish-release-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0
14-
- uses: actions/checkout@v5
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: 3.x
1717
- run: pip install -r requirements/build-docs.txt

.github/workflows/test-src.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Use Python ${{ matrix.python-version }}
22-
uses: actions/checkout@v5
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install Python Dependencies
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: Use Latest Python
34-
uses: actions/checkout@v5
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: "3.10"
3737
- name: Install Python Dependencies

0 commit comments

Comments
 (0)