Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #148

Merged
merged 8 commits into from
Oct 16, 2023
6 changes: 3 additions & 3 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'

- name: Login to Google Docker Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: 'oauth2accesstoken'
Expand All @@ -137,7 +137,7 @@ jobs:
# images: ${{ steps.image_version.outputs.service_image_path }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile.dev
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'

- name: Login to Google Docker Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: 'oauth2accesstoken'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'

- name: Login to Google Docker Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: 'oauth2accesstoken'
Expand All @@ -180,7 +180,7 @@ jobs:
# images: ${{ needs.versioning.outputs.service_image_path }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'

- name: Login to Google Docker Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: 'oauth2accesstoken'
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<parent>
<groupId>com.abavilla</groupId>
<artifactId>fpi-framework-pom</artifactId>
<version>1.8.8</version>
<version>1.8.10</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -80,25 +80,25 @@
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>libphonenumber</artifactId>
<version>8.13.20</version>
<version>8.13.23</version>
</dependency>

<dependency>
<groupId>com.abavilla</groupId>
<artifactId>fpi-login-api</artifactId>
<version>1.10.3</version>
<version>1.10.4</version>
</dependency>

<dependency>
<groupId>com.abavilla</groupId>
<artifactId>fpi-telco-plugin</artifactId>
<version>1.3.10</version>
<version>1.3.12</version>
</dependency>

<dependency>
<groupId>com.vincejv</groupId>
<artifactId>m360-api-client</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
</dependency>

</dependencies>
Expand Down