Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.7.0
- name: Lint charts
Expand All @@ -35,7 +35,7 @@ jobs:
trino-changed: ${{ steps.filter.outputs.trino }}
gateway-changed: ${{ steps.filter.outputs.gateway }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# Detect changes in trino/gatway files to conditionally run tests
- name: Get changed related files
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# skip cleanup to test deploying multiple releases in a single namespace
- { label: overrides, args: '-s -t default,overrides' }
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Helm
uses: azure/setup-helm@v4
with:
Expand All @@ -97,7 +97,7 @@ jobs:
include:
- { label: default, args: '' }
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Helm
uses: azure/setup-helm@v4
with:
Expand All @@ -114,7 +114,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.x'
Expand All @@ -127,11 +127,11 @@ jobs:
if: ${{ always() && !failure() && github.event_name != 'pull_request'}}
steps:
- name: Checkout main
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: main
- name: Checkout gh-pages
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: gh-pages
path: gh-pages
Expand All @@ -155,7 +155,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ always() && !failure() && github.event_name != 'pull_request'}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Configure Git
Expand Down
Loading