Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit032c276

Browse files
newwingbirdvarun-edachali-dbx
authored andcommitted
Updated action's version (#455)
Updated actions version.Signed-off-by: Arata Hatori <newwingbird@gmail.com>Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parenta941575 commit032c276

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

‎.github/workflows/code-quality-checks.yml‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
# check-out repo and set-up python
1818
#----------------------------------------------
1919
-name:Check out repository
20-
uses:actions/checkout@v2
20+
uses:actions/checkout@v4
2121
-name:Set up python ${{ matrix.python-version }}
2222
id:setup-python
23-
uses:actions/setup-python@v2
23+
uses:actions/setup-python@v5
2424
with:
2525
python-version:${{ matrix.python-version }}
2626
#----------------------------------------------
@@ -38,7 +38,7 @@ jobs:
3838
#----------------------------------------------
3939
-name:Load cached venv
4040
id:cached-poetry-dependencies
41-
uses:actions/cache@v2
41+
uses:actions/cache@v4
4242
with:
4343
path:.venv
4444
key:venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}
@@ -119,10 +119,10 @@ jobs:
119119
# check-out repo and set-up python
120120
#----------------------------------------------
121121
-name:Check out repository
122-
uses:actions/checkout@v2
122+
uses:actions/checkout@v4
123123
-name:Set up python ${{ matrix.python-version }}
124124
id:setup-python
125-
uses:actions/setup-python@v2
125+
uses:actions/setup-python@v5
126126
with:
127127
python-version:${{ matrix.python-version }}
128128
#----------------------------------------------
@@ -140,7 +140,7 @@ jobs:
140140
#----------------------------------------------
141141
-name:Load cached venv
142142
id:cached-poetry-dependencies
143-
uses:actions/cache@v2
143+
uses:actions/cache@v4
144144
with:
145145
path:.venv
146146
key:venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}
@@ -171,10 +171,10 @@ jobs:
171171
# check-out repo and set-up python
172172
#----------------------------------------------
173173
-name:Check out repository
174-
uses:actions/checkout@v2
174+
uses:actions/checkout@v4
175175
-name:Set up python ${{ matrix.python-version }}
176176
id:setup-python
177-
uses:actions/setup-python@v2
177+
uses:actions/setup-python@v5
178178
with:
179179
python-version:${{ matrix.python-version }}
180180
#----------------------------------------------
@@ -192,7 +192,7 @@ jobs:
192192
#----------------------------------------------
193193
-name:Load cached venv
194194
id:cached-poetry-dependencies
195-
uses:actions/cache@v2
195+
uses:actions/cache@v4
196196
with:
197197
path:.venv
198198
key:venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

‎.github/workflows/dco-check.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
id:dco-check
1111
uses:tisonkun/actions-dco@v1.1
1212
-name:Comment about DCO status
13-
uses:actions/github-script@v6
13+
uses:actions/github-script@v7
1414
if:${{ failure() }}
1515
with:
1616
script:|

‎.github/workflows/integration.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
# check-out repo and set-up python
2121
#----------------------------------------------
2222
-name:Check out repository
23-
uses:actions/checkout@v3
23+
uses:actions/checkout@v4
2424
-name:Set up python
2525
id:setup-python
26-
uses:actions/setup-python@v4
26+
uses:actions/setup-python@v5
2727
with:
2828
python-version:"3.10"
2929
#----------------------------------------------
@@ -41,7 +41,7 @@ jobs:
4141
#----------------------------------------------
4242
-name:Load cached venv
4343
id:cached-poetry-dependencies
44-
uses:actions/cache@v2
44+
uses:actions/cache@v4
4545
with:
4646
path:.venv
4747
key:venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

‎.github/workflows/publish-test.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
# check-out repo and set-up python
1010
#----------------------------------------------
1111
-name:Check out repository
12-
uses:actions/checkout@v2
12+
uses:actions/checkout@v4
1313
-name:Set up python
1414
id:setup-python
15-
uses:actions/setup-python@v2
15+
uses:actions/setup-python@v5
1616
with:
1717
python-version:3.9
1818
#----------------------------------------------
@@ -29,7 +29,7 @@ jobs:
2929
#----------------------------------------------
3030
-name:Load cached venv
3131
id:cached-poetry-dependencies
32-
uses:actions/cache@v2
32+
uses:actions/cache@v4
3333
with:
3434
path:.venv
3535
key:venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

‎.github/workflows/publish.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
# check-out repo and set-up python
1212
#----------------------------------------------
1313
-name:Check out repository
14-
uses:actions/checkout@v2
14+
uses:actions/checkout@v4
1515
-name:Set up python
1616
id:setup-python
17-
uses:actions/setup-python@v2
17+
uses:actions/setup-python@v5
1818
with:
1919
python-version:3.9
2020
#----------------------------------------------
@@ -31,7 +31,7 @@ jobs:
3131
#----------------------------------------------
3232
-name:Load cached venv
3333
id:cached-poetry-dependencies
34-
uses:actions/cache@v2
34+
uses:actions/cache@v4
3535
with:
3636
path:.venv
3737
key:venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp