Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/cicd-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
java-version: 21

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Unit test
run: make test-back
Expand All @@ -95,7 +95,7 @@ jobs:
PUPPETEER_SKIP_DOWNLOAD: "true"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: echo "VERSION:${{ env.VERSION }} ENV_PROFILE:${{ env.ENV_PROFILE }}"

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Docker Buildx
id: buildx
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
PUPPETEER_SKIP_DOWNLOAD: "true"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download image
uses: ishworkh/[email protected]
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
PUPPETEER_SKIP_DOWNLOAD: "true"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: browser-actions/setup-chrome@v2
with:
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 100

Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
VERSION: ${{needs.version.outputs.VERSION}}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download image
uses: ishworkh/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cicd-database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# packages: write
# steps:
# - name: Checkout
# uses: actions/checkout@v5
# uses: actions/checkout@v6
#
# - name: Set IMAGE_TAG
# run: echo "IMAGE_TAG=ghcr.io/mtes-mct/monitorenv/monitorenv-database:pg11-ts1.7.4-postgis3.3.2" >> $GITHUB_ENV
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set IMAGE_TAG
run: echo "IMAGE_TAG=ghcr.io/mtes-mct/monitorenv/monitorenv-database:pg${{ matrix.pg_major }}-postgis${{ matrix.postgis_version }}-timescale${{ matrix.timescaledb_version }}" >> $GITHUB_ENV
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
# packages: write
# steps:
# - name: Checkout
# uses: actions/checkout@v5
# uses: actions/checkout@v6
#
# - name: Set IMAGE_TAG
# run: echo "IMAGE_TAG=ghcr.io/mtes-mct/monitorenv/monitorenv-database-upgrade:pg${{ matrix.from_pg_major }}_to_pg${{ matrix.to_pg_major }}-postgis${{ matrix.postgis_version }}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd-datapipeline-prefect3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get last release version
id: lastrelease
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd-datapipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get last release version
id: lastrelease
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/[email protected]
with:
java-version: '17'
Expand Down
Loading