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
28 changes: 14 additions & 14 deletions .github/workflows/callable_test-automation-extention.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
steps:
- name: Convert the GitHub repository name to lowercase
id: repository-name
uses: ASzc/change-string-case-action@v6
uses: ASzc/change-string-case-action@v8
with:
string: ${{ github.repository }}

Expand Down Expand Up @@ -105,14 +105,14 @@ jobs:

- name: Log into the GitHub Container Registry
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -123,7 +123,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build and push image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./ubuntu/base
push: ${{ github.event_name != 'pull_request' }}
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:

- name: Set up Docker Buildx
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -178,15 +178,15 @@ jobs:
restore-keys: |
${{ runner.os }}-buildx
- name: Download Pipeline extention-deb artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ inputs.packageName }}
path: ./system/docker/node/
- name: LS DEBUG
run: ls ./system/docker/node/
- name: Build and cache image
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./system/docker/node
file: ./system/docker/node/Dockerfile.node
Expand All @@ -203,7 +203,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Upload node docker image artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: node_image
path: /tmp/node_image_${{ env.INPUT_UBUNTUVERSION }}.tar
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -250,7 +250,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build and cache image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./system/docker/client/
file: ./system/docker/client/Dockerfile.${{ env.INPUT_UBUNTUVERSION }}
Expand All @@ -269,7 +269,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Upload client docker image artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: client_image
path: /tmp/client_image_${{ env.INPUT_UBUNTUVERSION }}.tar
Expand Down Expand Up @@ -338,13 +338,13 @@ jobs:
docker network create --subnet="${{ env.NETWORK_SUBNET }}" "${{ env.NETWORK_NAME }}"

- name: Download client artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: client_image
path: /tmp

- name: Download node artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: node_image
path: /tmp
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
- name: Upload Detailed Test Failure Results
# The test runner only emits the detailed test results if the tests fail.
if: (steps.test_Matrix == 'failure') && failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: detailed-test-result-test_consensus
path: test-result-indy-test-automation-${{ matrix.module }}.txt
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/callable_test-automation-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
steps:
- name: Convert the GitHub repository name to lowercase
id: repository-name
uses: ASzc/change-string-case-action@v6
uses: ASzc/change-string-case-action@v8
with:
string: ${{ github.repository }}

Expand Down Expand Up @@ -105,14 +105,14 @@ jobs:

- name: Log into the GitHub Container Registry
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -123,7 +123,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build and push image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./ubuntu/base
push: ${{ github.event_name != 'pull_request' }}
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:

- name: Set up Docker Buildx
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -178,15 +178,15 @@ jobs:
restore-keys: |
${{ runner.os }}-buildx
- name: Download Pipeline node-deb artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ inputs.packageName }}
path: ./system/docker/node/
- name: LS DEBUG
run: ls ./system/docker/node/
- name: Build and cache image
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./system/docker/node
file: ./system/docker/node/Dockerfile.node
Expand All @@ -203,7 +203,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Upload node docker image artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: node_image
path: /tmp/node_image_${{ env.INPUT_UBUNTUVERSION }}.tar
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -250,7 +250,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build and cache image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./system/docker/client/
file: ./system/docker/client/Dockerfile.${{ env.INPUT_UBUNTUVERSION }}
Expand All @@ -269,7 +269,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Upload client docker image artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: client_image
path: /tmp/client_image_${{ env.INPUT_UBUNTUVERSION }}.tar
Expand Down Expand Up @@ -338,13 +338,13 @@ jobs:
docker network create --subnet="${{ env.NETWORK_SUBNET }}" "${{ env.NETWORK_NAME }}"

- name: Download client artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: client_image
path: /tmp

- name: Download node artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: node_image
path: /tmp
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
- name: Upload Detailed Test Failure Results
# The test runner only emits the detailed test results if the tests fail.
if: (steps.test_Matrix == 'failure') && failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: detailed-test-result-test_consensus
path: test-result-indy-test-automation-${{ matrix.module }}.txt
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/dispatchable_test-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
steps:
- name: Convert the GitHub repository name to lowercase
id: repository-name
uses: ASzc/change-string-case-action@v6
uses: ASzc/change-string-case-action@v8
with:
string: ${{ github.repository }}

Expand Down Expand Up @@ -103,14 +103,14 @@ jobs:

- name: Log into the GitHub Container Registry
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -121,7 +121,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build and push image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./ubuntu/base
push: ${{ github.event_name != 'pull_request' }}
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:

- name: Set up Docker Buildx
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -177,7 +177,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build image indy-node
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./system/docker/node
file: ./system/docker/node/Dockerfile.node
Expand All @@ -195,7 +195,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Upload node docker image artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: node_image
path: /tmp/node_image_${{ env.INPUT_UBUNTUVERSION }}.tar
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Cache Docker layers
uses: actions/cache@v5
Expand All @@ -242,7 +242,7 @@ jobs:
${{ runner.os }}-buildx

- name: Build and cache image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./system/docker/client/
file: ./system/docker/client/Dockerfile.${{ env.INPUT_UBUNTUVERSION }}
Expand All @@ -261,7 +261,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Upload client docker image artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: client_image
path: /tmp/client_image_${{ env.INPUT_UBUNTUVERSION }}.tar
Expand Down Expand Up @@ -330,13 +330,13 @@ jobs:
docker network create --subnet="${{ env.NETWORK_SUBNET }}" "${{ env.NETWORK_NAME }}"

- name: Download client artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: client_image
path: /tmp

- name: Download node artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: node_image
path: /tmp
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
- name: Upload Detailed Test Failure Results
# The test runner only emits the detailed test results if the tests fail.
if: (steps.test_Matrix == 'failure') && failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: detailed-test-result-test_consensus
path: test-result-indy-test-automation-${{ matrix.module }}.txt
Expand Down