Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-global-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
echo "Using TESTS_REF \`${TESTS_REF}\`" >>"$GITHUB_STEP_SUMMARY"

- name: Checkout tests repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: trustification/trustify-tests
path: trustify-tests
Expand All @@ -186,7 +186,7 @@ jobs:
docker load --input /tmp/${{ inputs.artifact }}.tar

- name: Checkout ui repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: trustify-ui
- name: Start trustify
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-global.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build-and-upload-for-global-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: save trustify-ui image
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
should-test: ${{ steps.check-changes.outputs.should-test }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: What files changed?
id: changed
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

steps:
- name: Checkout merge commit for PR${{ github.event.pull_request.number }}
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup QEMU to be able to build on ${{ matrix.architecture }}
if: ${{ matrix.architecture != 'amd64' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
tag-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: build
- name: Use Node.js
Expand Down
Loading