Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0 # Required for dynamic versioning

- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.12"

Expand All @@ -32,7 +32,7 @@ jobs:
- name: Check package metadata
run: twine check dist/*

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: DoubleML-pkg
path: dist/
Expand All @@ -49,7 +49,7 @@ jobs:

steps:
- name: Download built package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: DoubleML-pkg
path: dist/
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

steps:
- name: Download built package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: DoubleML-pkg
path: dist/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
- {os: 'ubuntu-latest', python-version: '3.13'}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0 # allow version retrieval with setuptools_scm

- name: Set up Python ${{ matrix.config.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.config.python-version }}

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
if: |
matrix.config.os == 'ubuntu-latest' &&
matrix.config.python-version == '3.12'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: code-coverage-report
path: |
Expand Down
Loading