Skip to content

Commit e21fcfe

Browse files
Merge pull request #25 from Tecnativa/add-pg-17
[ADD] Pg 17
2 parents e665865 + f59618b commit e21fcfe

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
pre-commit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-python@v1
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v6
1818
- name: Set PY
1919
run: |
2020
echo "PY=$(python -c 'import hashlib,sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')" >> $GITHUB_ENV
21-
- uses: actions/cache@v1
21+
- uses: actions/cache@v4
2222
with:
2323
path: ~/.cache/pre-commit
2424
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
@@ -31,6 +31,7 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
pg_version:
34+
- "17"
3435
- "16"
3536
- "15"
3637
- "14"
@@ -41,14 +42,14 @@ jobs:
4142
- "9.6"
4243
env:
4344
# Indicates what's the equivalent to tecnativa/postgres-autoconf:latest image
44-
LATEST_RELEASE: "16-alpine"
45+
LATEST_RELEASE: "17-alpine"
4546
DOCKER_REPO: tecnativa/postgres-autoconf
4647
DOCKER_TAG: ${{ matrix.pg_version }}-alpine
4748
GIT_SHA1: ${{ github.sha }}
4849
IS_PR: ${{ github.event_name == 'pull_request' }}
4950
steps:
50-
- uses: actions/checkout@v2
51-
- uses: actions/setup-python@v1
51+
- uses: actions/checkout@v4
52+
- uses: actions/setup-python@v6
5253
- run: pip install -r tests/ci-requirements.txt
5354

5455
# Build images

0 commit comments

Comments
 (0)