Skip to content

Commit

Permalink
[#624] Use newer version of checkout action
Browse files Browse the repository at this point in the history
The user story described a bug in the deployment setup preventing the
continuous deployment (CD) of the metadata-validation service. The issue
stemmed from the deployment environment lacking access to the directory
housing the necessary Dockerfile and its context. To resolve this, the
deployment setup needed adjustments to enable the CD process for the
metadata-validation service, ensuring the latest changes are reflected
in the production environment.

In this commit, the version of the checkout action in the
build-and-deploy-dev.yml workflow file was updated from v3 to v4. This
modification aims to address the bug by utilizing the newer version of
the checkout action, potentially resolving the access issues to the
directory containing the Dockerfile and its context, hence facilitating
the successful building and deployment of the metadata-validation
service in the CD pipeline.
  • Loading branch information
placek committed Apr 5, 2024
1 parent 40c9eac commit 25830da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
IP_ADDRESS_BYPASSING_BASIC_AUTH2: ${{ secrets.IP_ADDRESS_BYPASSING_BASIC_AUTH2 }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 25830da

Please sign in to comment.