Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/gdid_tracker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checkout the repository content
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Execute a dummy check to verify workflow initiation
- name: Run dummy check
Expand All @@ -41,13 +41,13 @@ jobs:
steps:
# Checkout the repository content with full history
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

# Set up the Python 3.13 environment
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.13'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
steps:
# Checkout the repository content
- name: Checkout develop branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: develop

# Set up the Python 3.14 environment
- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.14'
cache: 'pip'
Expand All @@ -48,7 +48,7 @@ jobs:

# Set up the Oracle Java 24 environment
- name: Setup Java
uses: actions/setup-java@v5
uses: actions/setup-java@v5.6.0
with:
distribution: 'oracle'
java-version: '24'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
# Checkout the 'main' branch with full history
- name: Checkout main branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: main
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
steps:
# Checkout the repository content
- name: Checkout develop branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: develop

# Set up the Python 3.14 environment
- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.14'
cache: 'pip'
Expand All @@ -48,7 +48,7 @@ jobs:

# Set up the Oracle Java 24 environment
- name: Setup Java
uses: actions/setup-java@v5
uses: actions/setup-java@v5.6.0
with:
distribution: 'oracle'
java-version: '24'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
steps:
# Checkout the repository content
- name: Checkout develop branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: develop

# Set up the Python 3.14 environment
- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.14'
cache: 'pip'
Expand Down