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/cd-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure Git Credentials
run: |
Expand All @@ -21,7 +21,7 @@ jobs:
if: (github.event_name != 'pull_request')

- name: Set up Python 3.9
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.9'
cache: 'pip'
Expand All @@ -34,7 +34,7 @@ jobs:
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV

- name: Caching
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v6
with:
# Ensure the full history is fetched
# This is required to run pre-commit on a specific set of commits
# TODO: Remove this when all the pre-commit issues are fixed
fetch-depth: 0
- uses: actions/setup-python@v5.1.1
- uses: actions/setup-python@v6
with:
python-version: 3.9
- name: Determine commit range
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
dependency-selector: ["NIGHTLY", "DEFAULT"]

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

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
Expand All @@ -41,7 +41,7 @@ jobs:
swap-storage: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/csat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/github-script@v6
- uses: actions/checkout@v6
- uses: actions/github-script@v8
with:
script: |
const script = require('./\.github/workflows/scripts/csat.js')
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
- uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
#Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
Expand Down Expand Up @@ -77,8 +77,8 @@ jobs:

#stale label for issues
stale-issue-label: 'stale'
- uses: actions/checkout@v3
- uses: actions/github-script@v6
- uses: actions/checkout@v6
- uses: actions/github-script@v8
with:
script: |
const script = require('./\.github/workflows/scripts/stale_csat.js')
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand All @@ -35,7 +35,7 @@ jobs:
twine check wheelhouse/*

- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: sdist
path: ./wheelhouse/*.tar.gz
Expand All @@ -53,10 +53,10 @@ jobs:
runs-on: ${{ format('{0}-latest', matrix.os) }}
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
twine check wheelhouse/*

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: wheels-${{ matrix.python-version }}-${{ matrix.os }}
path: ./wheelhouse/*.whl
Expand All @@ -115,7 +115,7 @@ jobs:
id-token: write
steps:
- name: Retrieve wheels and sdist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
merge-multiple: true
path: wheels/
Expand Down