Skip to content

Commit

Permalink
ci: bump action version
Browse files Browse the repository at this point in the history
Changed action version from 2 to 3.

Part of #157
  • Loading branch information
better0fdead committed Mar 16, 2023
1 parent 35d7326 commit 31effa0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

steps:
- name: Clone the connector
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup tt
run: |
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: echo "/opt/tarantool/bin" >> $GITHUB_PATH

- name: Setup golang for the connector and tests
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}

Expand Down Expand Up @@ -167,14 +167,14 @@ jobs:
- name: Clone the connector
# `ref` as merge request is needed for pull_request_target because this
# target runs in the context of the base commit of the pull request.
uses: actions/checkout@v2
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge

- name: Clone the connector
if: github.event_name != 'pull_request_target'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Tarantool ${{ matrix.sdk-version }}
run: |
Expand All @@ -184,7 +184,7 @@ jobs:
rm -f ${ARCHIVE_NAME}
- name: Setup golang for the connector and tests
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.13

Expand Down

0 comments on commit 31effa0

Please sign in to comment.