Skip to content

Commit

Permalink
Upgrade to latest action versions
Browse files Browse the repository at this point in the history
Signed-off-by: Wade Barnes <[email protected]>
  • Loading branch information
WadeBarnes committed Feb 13, 2024
1 parent ee17632 commit a0b54ca
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PR.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
testsNeeded: ${{ steps.testsNeeded.outputs.testsNeeded }}
steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup
id: setup
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v1
with:
ownerRepo: "sovrin-foundation"
- name: testsNeeded
id: testsNeeded
uses: dorny/paths-filter@v2
uses: dorny/paths-filter@v3
with:
filters: |
testsNeeded:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
publish: ${{ steps.setup.outputs.publish }}
steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup
id: setup
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publishRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
publish: ${{ steps.workflow-setup.outputs.publish}}
steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: get-release-info
id: get-release-info
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v1
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download sovtoken deb Artifacts from Github Action Artifacts
uses: dawidd6/action-download-artifact@v2
Expand Down Expand Up @@ -86,22 +86,22 @@ jobs:
name: sovtokenfees-python
path: artifacts/sovtokenfees-python
- name: Upload sovtoken-deb
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sovtoken-deb
path: artifacts/sovtoken-deb
- name: Upload sovtoken-python
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sovtoken-python
path: artifacts/sovtoken-python
- name: Upload sovtokenfees-deb
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sovtokenfees-deb
path: artifacts/sovtokenfees-deb
- name: Upload sovtokenfees-python
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sovtokenfees-python
path: artifacts/sovtokenfees-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releasepr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
distribution: ${{ steps.workflow-setup.outputs.distribution }}
steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: get-release-info
id: get-release-info
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v1
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/reuseable_build_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: adding github workspace as safe directory
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set Version with UX-timestamp
if: ${{ inputs.isDev }}
run: python3 updateVersion.py --timestamp ${{ needs.timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -102,12 +102,12 @@ jobs:
mv ./*.deb /tmp/build-output
- name: Upload sovtoken-deb
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sovtoken-deb
path: /tmp/build-output/sovtoken_*.deb
- name: Upload sovtokenfees-deb
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sovtokenfees-deb
path: /tmp/build-output/sovtokenfees_*.deb
Expand All @@ -120,13 +120,13 @@ jobs:
image: ghcr.io/${{ inputs.GITHUB_REPOSITORY_NAME }}/token-plugin-build:${{ inputs.UBUNTU_VERSION }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set Version with UX-timestamp
if: ${{ inputs.isDev }}
run: python3 updateVersion.py --timestamp ${{ needs.timestamp.outputs.timestamp }}
- name: Build python sovtoken package
run: python3 sovtoken/setup.py sdist --dist-dir /tmp/dist bdist_wheel --dist-dir /tmp/dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: sovtoken-python
path: /tmp/dist
Expand All @@ -140,13 +140,13 @@ jobs:
image: ghcr.io/${{ inputs.GITHUB_REPOSITORY_NAME }}/token-plugin-build:${{ inputs.UBUNTU_VERSION }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set Version with UX-timestamp
if: ${{ inputs.isDev }}
run: python3 updateVersion.py --timestamp ${{ needs.timestamp.outputs.timestamp }}
- name: Build python sovtokenfees package
run: python3 sovtokenfees/setup.py sdist --dist-dir /tmp/dist bdist_wheel --dist-dir /tmp/dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: sovtokenfees-python
path: /tmp/dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reuseable_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand All @@ -61,7 +61,7 @@ jobs:

- name: Publish Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1.0.7
uses: scacap/action-surefire-report@v1
continue-on-error: true
with:
check_name: Token Plugin ${{ matrix.module }} / ${{ matrix.dir }} Test Report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
BASE: ${{ steps.get-branch.outputs.branch }}
steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: extract branch
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
Expand Down

0 comments on commit a0b54ca

Please sign in to comment.