mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-05 23:23:42 +00:00
ci(build): update outdated action & pin deepdiff lib (#11260)
This commit is contained in:
parent
f97f20a867
commit
15c1cfc386
2
.github/workflows/dagster-plugin.yml
vendored
2
.github/workflows/dagster-plugin.yml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
distribution: "zulu"
|
distribution: "zulu"
|
||||||
java-version: 17
|
java-version: 17
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|||||||
2
.github/workflows/docker-unified.yml
vendored
2
.github/workflows/docker-unified.yml
vendored
@ -433,7 +433,7 @@ jobs:
|
|||||||
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
|
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout # adding checkout step just to make trivy upload happy
|
- name: Checkout # adding checkout step just to make trivy upload happy
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Download image
|
- name: Download image
|
||||||
uses: ishworkh/docker-image-artifact-download@v1
|
uses: ishworkh/docker-image-artifact-download@v1
|
||||||
if: ${{ needs.setup.outputs.publish != 'true' && needs.setup.outputs.pr-publish != 'true' }}
|
if: ${{ needs.setup.outputs.publish != 'true' && needs.setup.outputs.pr-publish != 'true' }}
|
||||||
|
|||||||
2
.github/workflows/gx-plugin.yml
vendored
2
.github/workflows/gx-plugin.yml
vendored
@ -46,7 +46,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
distribution: "zulu"
|
distribution: "zulu"
|
||||||
java-version: 17
|
java-version: 17
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|||||||
@ -83,7 +83,8 @@ dev_requirements = {
|
|||||||
"pytest-cov>=2.8.1",
|
"pytest-cov>=2.8.1",
|
||||||
"tox",
|
"tox",
|
||||||
"tox-uv",
|
"tox-uv",
|
||||||
"deepdiff",
|
# Missing numpy requirement in 8.0.0
|
||||||
|
"deepdiff!=8.0.0",
|
||||||
"tenacity",
|
"tenacity",
|
||||||
"build",
|
"build",
|
||||||
"twine",
|
"twine",
|
||||||
|
|||||||
@ -77,7 +77,8 @@ base_dev_requirements = {
|
|||||||
"pytest-asyncio>=0.16.0",
|
"pytest-asyncio>=0.16.0",
|
||||||
"pytest-cov>=2.8.1",
|
"pytest-cov>=2.8.1",
|
||||||
"tox",
|
"tox",
|
||||||
"deepdiff",
|
# Missing numpy requirement in 8.0.0
|
||||||
|
"deepdiff!=8.0.0",
|
||||||
"requests-mock",
|
"requests-mock",
|
||||||
"freezegun",
|
"freezegun",
|
||||||
"jsonpickle",
|
"jsonpickle",
|
||||||
|
|||||||
@ -82,7 +82,8 @@ base_dev_requirements = {
|
|||||||
"pytest-asyncio>=0.16.0",
|
"pytest-asyncio>=0.16.0",
|
||||||
"pytest-cov>=2.8.1",
|
"pytest-cov>=2.8.1",
|
||||||
"tox",
|
"tox",
|
||||||
"deepdiff",
|
# Missing numpy requirement in 8.0.0
|
||||||
|
"deepdiff!=8.0.0",
|
||||||
"requests-mock",
|
"requests-mock",
|
||||||
"freezegun",
|
"freezegun",
|
||||||
"jsonpickle",
|
"jsonpickle",
|
||||||
|
|||||||
@ -95,7 +95,7 @@ jobs:
|
|||||||
lookml-metadata-upload:
|
lookml-metadata-upload:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
|
|||||||
@ -544,7 +544,8 @@ mypy_stubs = {
|
|||||||
|
|
||||||
test_api_requirements = {
|
test_api_requirements = {
|
||||||
"pytest>=6.2.2",
|
"pytest>=6.2.2",
|
||||||
"deepdiff",
|
# Missing numpy requirement in 8.0.0
|
||||||
|
"deepdiff!=8.0.0",
|
||||||
"PyYAML",
|
"PyYAML",
|
||||||
"pytest-docker>=1.1.0",
|
"pytest-docker>=1.1.0",
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,4 +18,5 @@ types-requests>=2.28.11.6,<=2.31.0.3
|
|||||||
types-PyYAML
|
types-PyYAML
|
||||||
# https://github.com/docker/docker-py/issues/3256
|
# https://github.com/docker/docker-py/issues/3256
|
||||||
requests<=2.31.0
|
requests<=2.31.0
|
||||||
deepdiff
|
# Missing numpy requirement in 8.0.0
|
||||||
|
deepdiff!=8.0.0
|
||||||
Loading…
x
Reference in New Issue
Block a user