Skip to content

Bump the ci-dependencies group across 1 directory with 2 updates #240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# The version script relies on history. Fetch 100 commits to be safe.
fetch-depth: 100
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Download image artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.artifact }}

Expand All @@ -37,7 +37,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# The version script relies on history. Fetch 100 commits to be safe.
fetch-depth: 100
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
id: python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sentry_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# The version script relies on history. Fetch 100 commits to be safe.
fetch-depth: 100
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download image artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.artifact }}

Expand All @@ -23,7 +23,7 @@ jobs:

# Needed for the Docker Compose file.
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Memory limit tests would fail if this isn't disabled.
- name: Disable swap memory
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -70,7 +70,7 @@ jobs:
run: pip install -U -r requirements/coverage.pip

- name: Download coverage data
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: coverage
merge-multiple: true
Expand All @@ -95,7 +95,7 @@ jobs:
needs: test
steps:
- name: Download image artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.artifact }}

Expand All @@ -104,7 +104,7 @@ jobs:

# Needed for the Docker Compose file.
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Install eval deps the same way as init container from deployment.yaml
# This is to ensure that deployment won't fail at that step
Expand Down