Skip to content

Commit 67f6c3f

Browse files
CI: Github actions are updated
- actions/checkout@v6 - actions/upload-artifact@v6 - actions/setup-python@v6 - download-artifact@v7
1 parent 57431c6 commit 67f6c3f

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
@@ -76,7 +76,7 @@ jobs:
7676
echo "---------- [$GITHUB_ENV]"
7777
cat $GITHUB_ENV
7878
- name: Checkout
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v6
8080
- name: Prepare logs folder on the host
8181
run: mkdir -p "${{ env.RUN_CFG__LOGS_DIR }}"
8282
- name: Adjust logs folder permission
@@ -86,7 +86,7 @@ jobs:
8686
- name: Run
8787
run: docker run -t -v ${{ github.workspace }}/${{ env.RUN_CFG__LOGS_DIR }}:/home/test/testgres/logs "${{ env.RUN_CFG__DOCKER_IMAGE_NAME }}"
8888
- name: Upload Logs
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v6
9090
if: always() # IT IS IMPORTANT!
9191
with:
9292
name: testgres.common--test_logs--${{ env.RUN_CFG__NOW }}-${{ matrix.platform }}-py${{ matrix.python }}-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@v7
6363
with:
6464
name: release-dists
6565
path: dist/

0 commit comments

Comments
 (0)