Skip to content
Open
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion .github/workflows/autonomous-oracle-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-build.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@v4
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}}

- name: Build and push Backend image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
target: backend
Expand All @@ -78,7 +78,7 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}}

- name: Build and push Webapp image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./webapp
file: ./webapp/Dockerfile
Expand All @@ -103,7 +103,7 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}}

- name: Build and push Fullstack image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
target: fullstack
Expand All @@ -115,7 +115,7 @@ jobs:

- name: Generate artifact attestation
if: github.event_name != 'pull_request'
uses: actions/attest-build-provenance@v1
uses: actions/attest-build-provenance@v2
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/backend
subject-digest: ${{ steps.build-backend.outputs.digest }}
Expand Down
Loading
Loading