Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Upgraded all GHA from `actions/checkout@v3` to `actions/checkout@v4`.
There were already some actions using v4.
  • Loading branch information
andrepestana-aot authored Aug 8, 2024
1 parent 660c35e commit a0b6f91
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/env-setup-build-forms-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo BRANCH: $BUILD_REF
# Checkout the PR branch
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
# Log in to OpenShift.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/env-setup-deploy-forms-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo HOST_PREFIX: $HOST_PREFIX
# Checkout the PR branch
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
# Log in to OpenShift.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/env-setup-deploy-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
S3_REGION: ${{ secrets.S3_REGION }}
steps:
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
- name: Log in to OpenShift
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/env-setup-redis-recovery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
NAMESPACE: ${{ secrets.OPENSHIFT_ENV_NAMESPACE }}
steps:
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
- name: Log in to OpenShift
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prune-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
echo "Minimum Tags: ${MIN_TAGS}"
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to OpenShift
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
result-encoding: string
# Checkout the code to apply the tag.
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
# Create tag.
Expand All @@ -69,7 +69,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
echo BRANCH: ${{ needs.createTag.outputs.newTag }}
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.createTag.outputs.newTag }}
- name: Log in to OpenShift
Expand All @@ -93,7 +93,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
echo BRANCH: ${{ needs.createTag.outputs.newTag }}
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.createTag.outputs.newTag }}
- name: Log in to OpenShift
Expand All @@ -117,7 +117,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
echo BRANCH: ${{ needs.createTag.outputs.newTag }}
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.createTag.outputs.newTag }}
- name: Log in to OpenShift
Expand All @@ -141,7 +141,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
echo BRANCH: ${{ needs.createTag.outputs.newTag }}
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.createTag.outputs.newTag }}
- name: Log in to OpenShift
Expand All @@ -165,7 +165,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
echo BRANCH: ${{ needs.createTag.outputs.newTag }}
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.createTag.outputs.newTag }}
- name: Log in to OpenShift
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-create-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
# Create the branch.
- name: Create branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
- run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-deploy-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}

Expand All @@ -131,7 +131,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}

Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
echo GIT REF: ${{ inputs.gitRef }}
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}

Expand All @@ -186,7 +186,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}

Expand All @@ -213,7 +213,7 @@ jobs:
echo BUILD NAMESPACE: $BUILD_NAMESPACE
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-deploy-camunda-definitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
echo ZEEBE_ADDRESS: $ZEEBE_ADDRESS
echo RESOURCES_FOLDER: $RESOURCES_FOLDER
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
- name: Setup Nodejs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-deploy-formio-definitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
FORMS_SA_PASSWORD: ${{ secrets.FORMS_SA_PASSWORD }}
steps:
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
- name: Setup Nodejs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/repo-checks-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
steps:
# Checkout the PR branch.
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
# Generate the coverage report for API
- name: Run Tests
working-directory: "./sources/tests/"
Expand All @@ -75,7 +75,7 @@ jobs:
steps:
# Checkout the PR branch.
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
# Generate the coverage report for Workflow Workers
- name: Run Tests
working-directory: "./sources/tests/"
Expand All @@ -99,7 +99,7 @@ jobs:
steps:
# Checkout the PR branch.
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
# Run e2e tests for workflow.
- name: Run Tests
working-directory: "./sources/tests/"
Expand All @@ -118,7 +118,7 @@ jobs:
steps:
# Checkout the PR branch.
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
# Generate the coverage report for Queue Consumers
- name: Run Tests
working-directory: "./sources/tests/"
Expand All @@ -142,7 +142,7 @@ jobs:
steps:
# Checkout the PR branch.
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit a0b6f91

Please sign in to comment.