Skip to content

Commit

Permalink
bump gh action (#2144)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
sfc-gh-mkeller and github-actions authored Jan 23, 2025
1 parent 2331d23 commit 9701b3e
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 29 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/create_req_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down Expand Up @@ -37,9 +37,10 @@ jobs:
- name: Show created req file
shell: bash
run: cat ${{ env.requirements_file }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: temp_requirement
name: tested_requirement-py${{ matrix.python-version }}
path: ${{ env.requirements_file }}

push-files:
needs: create-req-files
Expand All @@ -50,10 +51,11 @@ jobs:
with:
token: ${{ secrets.PAT }}
- name: Download requirement files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifact
pattern: tested_requirement-py*
path: tested_requirements
merge-multiple: true
- name: Commit and push new requirements files
run: |
git config user.name github-actions
Expand Down
12 changes: 6 additions & 6 deletions tested_requirements/requirements_310.reqs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Generated on: Python 3.10.15
# Generated on: Python 3.10.16
asn1crypto==1.5.1
certifi==2024.8.30
certifi==2024.12.14
cffi==1.17.1
charset-normalizer==3.4.0
charset-normalizer==3.4.1
cryptography==44.0.0
filelock==3.16.1
filelock==3.17.0
idna==3.10
packaging==24.2
platformdirs==4.3.6
Expand All @@ -16,5 +16,5 @@ requests==2.32.3
sortedcontainers==2.4.0
tomlkit==0.13.2
typing_extensions==4.12.2
urllib3==2.2.3
snowflake-connector-python==3.12.4
urllib3==2.3.0
snowflake-connector-python==3.13.0
12 changes: 6 additions & 6 deletions tested_requirements/requirements_311.reqs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Generated on: Python 3.11.10
# Generated on: Python 3.11.11
asn1crypto==1.5.1
certifi==2024.8.30
certifi==2024.12.14
cffi==1.17.1
charset-normalizer==3.4.0
charset-normalizer==3.4.1
cryptography==44.0.0
filelock==3.16.1
filelock==3.17.0
idna==3.10
packaging==24.2
platformdirs==4.3.6
Expand All @@ -16,5 +16,5 @@ requests==2.32.3
sortedcontainers==2.4.0
tomlkit==0.13.2
typing_extensions==4.12.2
urllib3==2.2.3
snowflake-connector-python==3.12.4
urllib3==2.3.0
snowflake-connector-python==3.13.0
14 changes: 7 additions & 7 deletions tested_requirements/requirements_312.reqs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Generated on: Python 3.12.7
# Generated on: Python 3.12.8
asn1crypto==1.5.1
certifi==2024.8.30
certifi==2024.12.14
cffi==1.17.1
charset-normalizer==3.4.0
charset-normalizer==3.4.1
cryptography==44.0.0
filelock==3.16.1
filelock==3.17.0
idna==3.10
packaging==24.2
platformdirs==4.3.6
Expand All @@ -13,10 +13,10 @@ PyJWT==2.10.1
pyOpenSSL==24.3.0
pytz==2024.2
requests==2.32.3
setuptools==75.6.0
setuptools==75.8.0
sortedcontainers==2.4.0
tomlkit==0.13.2
typing_extensions==4.12.2
urllib3==2.2.3
urllib3==2.3.0
wheel==0.45.1
snowflake-connector-python==3.12.4
snowflake-connector-python==3.13.0
10 changes: 5 additions & 5 deletions tested_requirements/requirements_39.reqs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Generated on: Python 3.9.20
# Generated on: Python 3.9.21
asn1crypto==1.5.1
certifi==2024.8.30
certifi==2024.12.14
cffi==1.17.1
charset-normalizer==3.4.0
charset-normalizer==3.4.1
cryptography==44.0.0
filelock==3.16.1
filelock==3.17.0
idna==3.10
packaging==24.2
platformdirs==4.3.6
Expand All @@ -17,4 +17,4 @@ sortedcontainers==2.4.0
tomlkit==0.13.2
typing_extensions==4.12.2
urllib3==1.26.20
snowflake-connector-python==3.12.4
snowflake-connector-python==3.13.0

0 comments on commit 9701b3e

Please sign in to comment.