diff --git a/.github/workflows/gitleaks.yaml b/.github/workflows/gitleaks.yaml index 69eec18b..a00ce5e3 100644 --- a/.github/workflows/gitleaks.yaml +++ b/.github/workflows/gitleaks.yaml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: '0' - name: gitleaks-action diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 59d7d6d9..76e52b7e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -25,8 +25,8 @@ jobs: timeout-minutes: 10 steps: - name: Check out repository code - uses: actions/checkout@v3 - - uses: actions/cache@v3 + uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} @@ -47,7 +47,7 @@ jobs: timeout-minutes: 10 services: database: - image: mongo:6.0.15-jammy + image: mongo:7.0.11-jammy env: MONGO_INITDB_ROOT_USERNAME: acid MONGO_INITDB_ROOT_PASSWORD: password @@ -71,8 +71,8 @@ jobs: shard: [1] steps: - name: Check out repository code - uses: actions/checkout@v3 - - uses: actions/cache@v3 + uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} @@ -96,13 +96,13 @@ jobs: timeout-minutes: 5 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Build and push docker image - uses: docker/build-push-action@v2.10.0 + uses: docker/build-push-action@v5.3.0 with: context: . file: ./docker/Dockerfile diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 0aa1c235..45d35906 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -30,8 +30,8 @@ jobs: timeout-minutes: 10 steps: - name: Check out repository code - uses: actions/checkout@v3 - - uses: actions/cache@v3 + uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} @@ -52,7 +52,7 @@ jobs: timeout-minutes: 10 services: database: - image: mongo:6.0.15-jammy + image: mongo:7.0.11-jammy env: MONGO_INITDB_ROOT_USERNAME: acid MONGO_INITDB_ROOT_PASSWORD: password @@ -76,8 +76,8 @@ jobs: shard: [1] steps: - name: Check out repository code - uses: actions/checkout@v3 - - uses: actions/cache@v3 + uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} @@ -104,13 +104,13 @@ jobs: timeout-minutes: 5 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Build and push docker image - uses: docker/build-push-action@v2.10.0 + uses: docker/build-push-action@v5.3.0 with: context: . file: ./docker/Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 31c7b204..3bdc017e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ services: - - postgres:14.12-alpine + - postgres:16.3-alpine variables: POSTGRES_DB: develop diff --git a/docker-compose.yml b/docker-compose.yml index 1bfd7417..ff0bdd54 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.7" services: db: - image: mongo:6.0.15-jammy + image: mongo:7.0.11-jammy environment: MONGO_INITDB_ROOT_USERNAME: acid MONGO_INITDB_ROOT_PASSWORD: password