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/regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
timeout-minutes: 30

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

- name: Set up Python 3.11
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: pip
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Upload regression results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: regression-results-${{ github.run_id }}
path: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Full history for changelog generation

- name: Generate changelog
id: changelog
uses: mikepenz/release-changelog-builder-action@v5
uses: mikepenz/release-changelog-builder-action@v6
with:
configuration: '.github/release-notes-config.json'
token: ${{ secrets.GITHUB_TOKEN }}
toTag: ${{ github.event.release.tag_name }}

- name: Update release notes
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
needs: generate-release-notes
steps:
- name: Create announcement comment
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -94,12 +94,12 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Checkout code at release tag
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.release.tag_name }}

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

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:

- name: Comment validation result
if: always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- 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.11"
cache: pip
Expand Down Expand Up @@ -58,10 +58,10 @@ jobs:
python-version: ["3.10", "3.11", "3.12"]

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

- 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 Expand Up @@ -113,10 +113,10 @@ jobs:
# Health check performed via Python step below

steps:
- 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.11"
cache: pip
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
if: github.ref == 'refs/heads/main' || contains(github.event.head_commit.message, '[e2e]')

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

# Create .env file with dummy credentials for CI
- name: Create Docker environment file
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
VERIFY_DASHBOARDS

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: pip
Expand All @@ -472,7 +472,7 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Cache Playwright browsers
uses: actions/cache@v4
uses: actions/cache@v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-test-results
path: test-results-e2e.xml
Expand Down
Loading