Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Bump actions/checkout from 3 to 4 #410

Merged
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/iop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
NO_TTY: "1"
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: test findy as Bob with ${{ matrix.their_agent }}
# TODO: javascript agent behaving badly, enable when problems fixed
if: ${{ matrix.their_agent != 'javascript' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: test
run: echo "implement e2e/acceptance tests"

Expand All @@ -19,7 +19,7 @@ jobs:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
- name: merge
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
CI: true
steps:
# install indy
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: "findy-network/findy-wrapper-go"
- name: install indy
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
CI: true
steps:
# setup von-network ledger
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: "bcgov/von-network"
ref: "22973513c99cc9a286a6f181ca5c5f354a4eb2ee"
Expand All @@ -54,7 +54,7 @@ jobs:
./manage start

# install indy
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: "findy-network/findy-wrapper-go"
- name: install indy
Expand All @@ -66,7 +66,7 @@ jobs:
with:
go-version-file: "./go.mod"
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# test round for sov-did (default) and indy ledger
- name: test and measure coverage
Expand All @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# install indy
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: "findy-network/findy-wrapper-go"
- name: install indy
Expand All @@ -100,7 +100,7 @@ jobs:
with:
go-version-file: "./go.mod"
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install cli
run: |
curl https://raw.githubusercontent.com/findy-network/findy-agent-cli/HEAD/install.sh > install.sh
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
needs: [check, test-default, e2e-full]
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: download coverage file
uses: actions/download-artifact@v3
with:
Expand Down