Skip to content

Commit d28bc13

Browse files
Update GitHub action versions in workflows (#7412) (#7421)
Co-authored-by: Steve Gordon <[email protected]>
1 parent 74df9a3 commit d28bc13

9 files changed

+22
-22
lines changed

.github/workflows/auto-label.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Auto Label
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- uses: banyan/[email protected]
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/integration-jobs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ jobs:
3535

3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v2
39-
- uses: actions/setup-dotnet@v1
38+
uses: actions/checkout@v3
39+
- uses: actions/setup-dotnet@v3
4040
with:
4141
dotnet-version: '6.0.403'
42-
- uses: actions/cache@v2
42+
- uses: actions/cache@v3
4343
with:
4444
path: ~/.nuget/packages
4545
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
4646
restore-keys: |
4747
${{ runner.os }}-nuget-
48-
- uses: actions/cache@v2
48+
- uses: actions/cache@v3
4949
with:
5050
path: ~/.local/share/ElasticManaged/elasticsearch-${{ matrix.stack_version }}
5151
key: ${{ runner.os }}-elastic-managed-${{ matrix.stack_version }}

.github/workflows/license.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212

1313
- name: Check license headers
1414
run: |

.github/workflows/make-bump.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: "Bump ${{ github.event.inputs.version }} on branch ${{ github.event.inputs.branch }} "
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
ref: "${{ github.event.inputs.branch }}"
2020
- run: "./.ci/make.sh bump ${{ github.event.inputs.version }}"
@@ -33,7 +33,7 @@ jobs:
3333
Updates ${{ github.event.inputs.branch }} to version ${{ github.event.inputs.version }}.
3434
labels: "infra,code-gen"
3535
# Add version and backport labels automatically
36-
- uses: actions/setup-dotnet@v1
36+
- uses: actions/setup-dotnet@v3
3737
with:
3838
dotnet-version: '6.0.403'
3939
- name: Install dotnet-script

.github/workflows/make-codegen.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
branch: ${{ fromJson(needs.active-branches.outputs.matrix) }}
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030
with:
3131
ref: "${{ matrix.branch }}"
3232
- run: "./.ci/make.sh codegen ${{ matrix.branch }}"

.github/workflows/make-release-notes.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
matrix:
4646
branch: ${{ fromJson(needs.active-branches.outputs.matrix) }}
4747
steps:
48-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v3
4949
with:
5050
ref: "${{ matrix.branch }}"
5151

52-
- uses: actions/setup-dotnet@v1
52+
- uses: actions/setup-dotnet@v3
5353
with:
5454
dotnet-version: '6.0.403'
5555
- name: Install dotnet-script

.github/workflows/stale-jobs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2
25-
- uses: actions/setup-dotnet@v1
24+
uses: actions/checkout@v3
25+
- uses: actions/setup-dotnet@v3
2626
with:
2727
dotnet-version: '6.0.403'
28-
- uses: actions/cache@v2
28+
- uses: actions/cache@v3
2929
with:
3030
path: ~/.nuget/packages
3131
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}

.github/workflows/test-jobs.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
24-
- uses: actions/setup-dotnet@v1
23+
uses: actions/checkout@v3
24+
- uses: actions/setup-dotnet@v3
2525
with:
2626
dotnet-version: '6.0.403'
27-
- uses: actions/cache@v2
27+
- uses: actions/cache@v3
2828
with:
2929
path: ~/.nuget/packages
3030
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -50,11 +50,11 @@ jobs:
5050
runs-on: ubuntu-latest
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v2
54-
- uses: actions/setup-dotnet@v1
53+
uses: actions/checkout@v3
54+
- uses: actions/setup-dotnet@v3
5555
with:
5656
dotnet-version: '6.0.403'
57-
- uses: actions/cache@v2
57+
- uses: actions/cache@v3
5858
with:
5959
path: ~/.nuget/packages
6060
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}

.github/workflows/unified-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v2
29-
- uses: actions/setup-dotnet@v1
28+
uses: actions/checkout@v3
29+
- uses: actions/setup-dotnet@v3
3030
with:
3131
dotnet-version: '6.0.403'
3232

0 commit comments

Comments
 (0)