Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 946ee6b

Browse files
fix(deps): update major
1 parent 82f4b67 commit 946ee6b

File tree

5 files changed

+188
-315
lines changed

5 files changed

+188
-315
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Install heroku
1212
run: curl https://cli-assets.heroku.com/install-ubuntu.sh | sh
1313
- name: Login Heroku

.github/workflows/pull_request.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Label used to access the service container
2525
postgres:
2626
# Docker Hub image
27-
image: postgres:14.5
27+
image: postgres:16.1
2828
# Provide the password for postgres
2929
env:
3030
POSTGRES_DB: oipie_tests
@@ -39,7 +39,7 @@ jobs:
3939
--health-timeout 5s
4040
--health-retries 5
4141
steps:
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
- name: Install poetry
4444
run: pip install poetry==1.2.0
4545
- name: Disable poetry virtualenv on GitHub Actions
@@ -64,13 +64,13 @@ jobs:
6464
timeout-minutes: 5
6565
steps:
6666
- name: Checkout code
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868
- name: Set up QEMU
69-
uses: docker/setup-qemu-action@v2
69+
uses: docker/setup-qemu-action@v3
7070
- name: Set up Docker Buildx
71-
uses: docker/setup-buildx-action@v2
71+
uses: docker/setup-buildx-action@v3
7272
- name: Build and push docker image
73-
uses: docker/build-push-action@v3.1.1
73+
uses: docker/build-push-action@v5.1.0
7474
with:
7575
context: .
7676
file: ./Dockerfile

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.7"
22
services:
33
postgres:
44
container_name: oipie
5-
image: postgres:14.5
5+
image: postgres:16.1
66
volumes:
77
- ./scripts/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/99-oipie.sh
88
ports:

0 commit comments

Comments
 (0)