Skip to content

Commit af616b0

Browse files
CI: Github actions are updated (#350)
- actions/checkout@v6 - actions/upload-artifact@v6 - actions/setup-python@v6
1 parent 26838e3 commit af616b0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/package-verification.yml

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

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v3
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
@@ -125,13 +125,13 @@ jobs:
125125
- name: Adjust logs folder permission
126126
run: chmod -R 777 "${{ env.RUN_CFG__LOGS_DIR }}"
127127
- name: Checkout
128-
uses: actions/checkout@v4
128+
uses: actions/checkout@v6
129129
- name: Build local image ${{ matrix.alpine }}
130130
run: docker build --build-arg PG_VERSION="${{ matrix.postgres }}" --build-arg PYTHON_VERSION="${{ matrix.python }}" -t "${{ env.RUN_CFG__DOCKER_IMAGE_NAME }}" -f Dockerfile--${{ matrix.platform }}.tmpl .
131131
- name: Run
132132
run: docker run $(bash <(curl -s https://codecov.io/env)) -t -v ${{ github.workspace }}/${{ env.RUN_CFG__LOGS_DIR }}:/home/test/testgres/logs "${{ env.RUN_CFG__DOCKER_IMAGE_NAME }}"
133133
- name: Upload Logs
134-
uses: actions/upload-artifact@v4
134+
uses: actions/upload-artifact@v6
135135
if: always() # IT IS IMPORTANT!
136136
with:
137137
name: testgres--test_logs--${{ env.RUN_CFG__NOW }}-${{ matrix.platform }}-py${{ matrix.python }}-pg${{ matrix.postgres }}-id${{ github.run_id }}

.github/workflows/python-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

25-
- uses: actions/setup-python@v5
25+
- uses: actions/setup-python@v6
2626
with:
2727
python-version: "3.x"
2828

@@ -59,7 +59,7 @@ jobs:
5959

6060
steps:
6161
- name: Retrieve release distributions
62-
uses: actions/download-artifact@v4
62+
uses: actions/download-artifact@v6
6363
with:
6464
name: release-dists
6565
path: dist/

0 commit comments

Comments
 (0)