Skip to content

Commit

Permalink
.github: bump gh actions dependencies versions
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeniy Zayats <zayatsevgeniy@nspcc.io>
  • Loading branch information
Evgeniy Zayats committed Oct 31, 2024
1 parent ee17a1d commit ed31363
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,20 @@ jobs:
timeout-minutes: 500
steps:
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v5.1.0
with:
cache: true
go-version: '1.22'
- run: go version

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v5.3.0
with:
python-version: '3.12'
- run: python --version

- name: Checkout neofs-testcases repository
uses: actions/checkout@v4
uses: actions/checkout@v4.2.2
with:
repository: nspcc-dev/neofs-testcases
ref: ${{ inputs.neofs_testcases_commit }}
Expand All @@ -137,7 +137,7 @@ jobs:
working-directory: neofs-testcases

- name: Checkout xk6-neofs repository
uses: actions/checkout@v4
uses: actions/checkout@v4.2.2
with:
repository: nspcc-dev/xk6-neofs
ref: master
Expand All @@ -152,7 +152,7 @@ jobs:

- name: Checkout neofs-node repository
if: ${{ inputs.neofs_node_commit != 'from_tests' }}
uses: actions/checkout@v4
uses: actions/checkout@v4.2.2
with:
repository: nspcc-dev/neofs-node
ref: ${{ inputs.neofs_node_commit }}
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:

- name: Download neofs-cli
if: ${{ inputs.neofs_node_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-node'
version: 'tags/${{ inputs.neofs_node_tag }}'
Expand All @@ -189,7 +189,7 @@ jobs:

- name: Download neofs-adm
if: ${{ inputs.neofs_node_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-node'
version: 'tags/${{ inputs.neofs_node_tag }}'
Expand All @@ -198,7 +198,7 @@ jobs:

- name: Download neofs-ir
if: ${{ inputs.neofs_node_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-node'
version: 'tags/${{ inputs.neofs_node_tag }}'
Expand All @@ -207,7 +207,7 @@ jobs:

- name: Download neofs-lens
if: ${{ inputs.neofs_node_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-node'
version: 'tags/${{ inputs.neofs_node_tag }}'
Expand All @@ -216,7 +216,7 @@ jobs:

- name: Download neofs-node
if: ${{ inputs.neofs_node_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-node'
version: 'tags/${{ inputs.neofs_node_tag }}'
Expand All @@ -235,7 +235,7 @@ jobs:

- name: Checkout neofs-s3-gw repository
if: ${{ inputs.neofs_s3_gw_commit != 'from_tests' }}
uses: actions/checkout@v4
uses: actions/checkout@v4.2.2
with:
repository: nspcc-dev/neofs-s3-gw
ref: ${{ inputs.neofs_s3_gw_commit }}
Expand All @@ -258,7 +258,7 @@ jobs:

- name: Download neofs-s3-gw
if: ${{ inputs.neofs_s3_gw_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-s3-gw'
version: 'tags/${{ inputs.neofs_s3_gw_tag }}'
Expand All @@ -267,7 +267,7 @@ jobs:

- name: Download neofs-s3-authmate
if: ${{ inputs.neofs_s3_gw_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-s3-gw'
version: 'tags/${{ inputs.neofs_s3_gw_tag }}'
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:

- name: Download neofs-rest-gw
if: ${{ inputs.neofs_rest_gw_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neofs-rest-gw'
version: 'tags/${{ inputs.neofs_rest_gw_tag }}'
Expand All @@ -320,7 +320,7 @@ jobs:

- name: Download neo-go
if: ${{ inputs.neo_go_tag != 'from_tests' }}
uses: dsaltares/fetch-gh-release-asset@1.1.1
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: 'nspcc-dev/neo-go'
version: 'tags/${{ inputs.neo_go_tag }}'
Expand Down Expand Up @@ -372,7 +372,7 @@ jobs:
if: always() && steps.put_report.outcome == 'success'
env:
REPORT_NEOFS_URL: ${{ steps.put_report.outputs.REPORT_NEOFS_URL }}index.html
uses: Sibz/github-status-action@v1
uses: guibranco/github-status-action-v2@v1.1.13
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
context: 'Test report ${{ matrix.runner }}'
Expand Down

0 comments on commit ed31363

Please sign in to comment.