Skip to content

Commit 3356d16

Browse files
authored
Merge branch 'main' into fix/data_loss
2 parents 7fd4c8b + 16a9b41 commit 3356d16

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/CD-publish_to_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Checkout code
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
fetch-depth: 0
5454

@@ -109,7 +109,7 @@ jobs:
109109
shell: bash
110110

111111
- name: Repository Dispatch
112-
uses: peter-evans/repository-dispatch@v3
112+
uses: peter-evans/repository-dispatch@v4
113113
with:
114114
token: ${{ secrets.RUNPOD_WORKERS_PAT }}
115115
repository: ${{ matrix.repo }}

.github/workflows/CD-test_publish_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id-token: write # Required for OIDC
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Install uv
2222
uses: astral-sh/setup-uv@v7
2323
with:

.github/workflows/CI-codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
queries: security-extended,security-and-quality
4949

5050
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v3
53+
uses: github/codeql-action/autobuild@v4
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -63,6 +63,6 @@ jobs:
6363
# ./location_of_script_within_repo/buildscript.sh
6464

6565
- name: Perform CodeQL Analysis
66-
uses: github/codeql-action/analyze@v3
66+
uses: github/codeql-action/analyze@v4
6767
with:
6868
category: "/language:${{matrix.language}}"

.github/workflows/CI-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 15
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- uses: astral-sh/setup-uv@v6
1818

.github/workflows/CI-pytests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Install uv
2525
uses: astral-sh/setup-uv@v7

.github/workflows/vhs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
vhs:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v7
@@ -39,7 +39,7 @@ jobs:
3939
path: ".github/tape_collection/cli_ssh.tape"
4040

4141
# Add gifs to commit
42-
- uses: stefanzweifel/git-auto-commit-action@v6
42+
- uses: stefanzweifel/git-auto-commit-action@v7
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
with:

tests/test_api/test_mutation_endpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ def test_all_fields(self):
4242
self.assertIn("scalerValue: 5", result)
4343
self.assertIn("workersMin: 2", result)
4444
self.assertIn("workersMax: 4", result)
45-
self.assertIn('flashBootType: "FLASHBOOT"', result)
45+
self.assertIn("flashBootType: FLASHBOOT", result)

0 commit comments

Comments
 (0)