Skip to content

Commit 83fb180

Browse files
authored
Merge pull request #555 from ydb-platform/ci
update requirment actions
2 parents 2583ff6 + 49a714a commit 83fb180

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/breaking.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
with:
1818
go-version: "1.20"
1919
- name: Checkout code
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
- name: Gorelease cache
22-
uses: actions/cache@v2
22+
uses: actions/cache@v3
2323
with:
2424
path: |
2525
~/go/bin/gorelease

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout sources
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

1515
- name: Changelog updated
16-
uses: Zomzog/changelog-checker@v1.2.0
16+
uses: Zomzog/changelog-checker@v1.3.0
1717
with:
1818
fileName: CHANGELOG.md
1919
env:

.github/workflows/check-codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

2222
- name: Setup Go
2323
uses: actions/setup-go@v3

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
cancel-in-progress: true
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: golangci-lint
18-
uses: golangci/golangci-lint-action@v2
18+
uses: golangci/golangci-lint-action@v3
1919
with:
2020
version: v1.50.1
2121
autoformatter:
@@ -25,7 +25,7 @@ jobs:
2525
cancel-in-progress: true
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929

3030
- name: Install Go
3131
uses: actions/setup-go@v3

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
go-version: ${{ matrix.go-version }}
2626
- name: Checkout code
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
- name: Test
2929
run: go test -race -tags fast -coverprofile unit.txt -covermode atomic ./...
3030
- name: Upload coverage report to Codecov
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
go-version: ${{ matrix.go-version }}
7070
- name: Checkout code
71-
uses: actions/checkout@v2
71+
uses: actions/checkout@v3
7272
- name: Wait database available
7373
run: bash ./.github/scripts/wait-ydb-container.sh
7474
- name: Integration test
@@ -113,7 +113,7 @@ jobs:
113113
with:
114114
go-version: ${{ matrix.go-version }}
115115
- name: Checkout code
116-
uses: actions/checkout@v2
116+
uses: actions/checkout@v3
117117
- name: Wait database available
118118
run: bash ./.github/scripts/wait-ydb-container.sh
119119
- name: Test insecure connection

0 commit comments

Comments
 (0)