Skip to content

Commit

Permalink
ci(build): update outdated action & pin deepdiff lib (#11260)
Browse files Browse the repository at this point in the history
  • Loading branch information
anshbansal authored Aug 28, 2024
1 parent f97f20a commit 15c1cfc
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dagster-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
distribution: "zulu"
java-version: 17
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
steps:
- name: Checkout # adding checkout step just to make trivy upload happy
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download image
uses: ishworkh/docker-image-artifact-download@v1
if: ${{ needs.setup.outputs.publish != 'true' && needs.setup.outputs.pr-publish != 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gx-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
distribution: "zulu"
java-version: 17
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion metadata-ingestion-modules/airflow-plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ def get_long_description():
"pytest-cov>=2.8.1",
"tox",
"tox-uv",
"deepdiff",
# Missing numpy requirement in 8.0.0
"deepdiff!=8.0.0",
"tenacity",
"build",
"twine",
Expand Down
3 changes: 2 additions & 1 deletion metadata-ingestion-modules/dagster-plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def get_long_description():
"pytest-asyncio>=0.16.0",
"pytest-cov>=2.8.1",
"tox",
"deepdiff",
# Missing numpy requirement in 8.0.0
"deepdiff!=8.0.0",
"requests-mock",
"freezegun",
"jsonpickle",
Expand Down
3 changes: 2 additions & 1 deletion metadata-ingestion-modules/gx-plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def get_long_description():
"pytest-asyncio>=0.16.0",
"pytest-cov>=2.8.1",
"tox",
"deepdiff",
# Missing numpy requirement in 8.0.0
"deepdiff!=8.0.0",
"requests-mock",
"freezegun",
"jsonpickle",
Expand Down
2 changes: 1 addition & 1 deletion metadata-ingestion/docs/sources/looker/lookml_pre.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
lookml-metadata-upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down
3 changes: 2 additions & 1 deletion metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,8 @@

test_api_requirements = {
"pytest>=6.2.2",
"deepdiff",
# Missing numpy requirement in 8.0.0
"deepdiff!=8.0.0",
"PyYAML",
"pytest-docker>=1.1.0",
}
Expand Down
3 changes: 2 additions & 1 deletion smoke-test/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ types-requests>=2.28.11.6,<=2.31.0.3
types-PyYAML
# https://github.com/docker/docker-py/issues/3256
requests<=2.31.0
deepdiff
# Missing numpy requirement in 8.0.0
deepdiff!=8.0.0

0 comments on commit 15c1cfc

Please sign in to comment.