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
4 changes: 2 additions & 2 deletions .github/workflows/api-swagger-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
go-sm-api-version: ${{ steps.go-sm-api-version.outputs.GO_SM_API_VERSION }}
steps:
- name: Checkout target repository on last release
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Go
uses: actions/setup-go@v5
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-24.04
needs: check-version
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: spacemeshos/api
path: api
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
outputs:
nondocchanges: ${{ steps.filter.outputs.nondoc }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
- uses: dorny/paths-filter@v3
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Add OpenCL support
run: sudo apt-get update -q && sudo apt-get install -qy ocl-icd-opencl-dev libpocl2
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
- uses: extractions/netrc@v2
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Add OpenCL support
run: sudo apt-get update -q && sudo apt-get install -qy ocl-icd-opencl-dev libpocl2
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
- uses: extractions/netrc@v2
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
git config --global core.compression 0
git config --global http.postBuffer 1024M
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
- uses: extractions/netrc@v2
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
run: |
sudo ethtool -K eth0 tx off
sudo ethtool -K eth0 rx off
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
lfs: true
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
git config --global core.compression 0
git config --global http.postBuffer 1024M
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
lfs: true
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
outname_sufix: "linux-arm64"
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
git config --global core.compression 0
git config --global http.postBuffer 1024M
- name: Check out Git repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
lfs: true
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/systest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
outputs:
nondocchanges: ${{ steps.filter.outputs.nondoc || github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dorny/paths-filter@v3
id: filter
with:
Expand All @@ -64,7 +64,7 @@ jobs:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}

Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}

Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ssh-key: ${{ secrets.GH_ACTION_PRIVATE_KEY }}

Expand Down
Loading