Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/check-db-models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Compare borrowed files with upstream
run: |
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
name: Python lint
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Set up Python ${{ env.PY_VERSION }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.PY_VERSION }}

- name: Install Poetry
uses: abatilo/actions-poetry@v3
uses: abatilo/actions-poetry@v4
with:
poetry-version: ${{ env.POETRY_VERSION }}
poetry-plugins: "poetry-plugin-export"
Expand All @@ -42,16 +42,16 @@ jobs:
name: Pytests
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Set up Python ${{ env.PY_VERSION }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.PY_VERSION }}

- name: Install Poetry
uses: abatilo/actions-poetry@v3
uses: abatilo/actions-poetry@v4
with:
poetry-version: ${{ env.POETRY_VERSION }}
poetry-plugins: "poetry-plugin-export"
Expand All @@ -73,16 +73,16 @@ jobs:
name: Playwright tests
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Set up Python ${{ env.PY_VERSION }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.PY_VERSION }}

- name: Install Poetry
uses: abatilo/actions-poetry@v3
uses: abatilo/actions-poetry@v4
with:
poetry-version: ${{ env.POETRY_VERSION }}
poetry-plugins: "poetry-plugin-export"
Expand Down Expand Up @@ -121,22 +121,22 @@ jobs:
continue-on-error: true
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1

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

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '18'

- name: Install Poetry
uses: abatilo/actions-poetry@v3
uses: abatilo/actions-poetry@v4
with:
poetry-version: ${{ env.POETRY_VERSION }}
poetry-plugins: "poetry-plugin-export"
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Deploy via composite action
uses: ./.github/actions/deploy
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
name: Python Lint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: chartboost/ruff-action@v1

deploy-staging:
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Deploy via composite action
uses: ./.github/actions/deploy
with:
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Deploy via composite action
uses: ./.github/actions/deploy
with:
Expand All @@ -66,10 +66,10 @@ jobs:
continue-on-error: true
steps:
- name: Check out the code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20"

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
}

- name: Upload Lighthouse results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: lighthouse-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sitemap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
CF_SPACE: ${{ matrix.environment }}
steps:
- name: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Store task instance names
run: |
echo "GEN_INSTANCE_NAME=sitemap-generate-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}" >> $GITHUB_ENV
Expand Down
Loading