Skip to content

Commit 2694b34

Browse files
committed
Workflow upgrade action to actions/checkout@v6
1 parent 18f4a3b commit 2694b34

24 files changed

Lines changed: 26 additions & 26 deletions

.github/workflows/code-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/push-again.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
3030
- name: Checkout ref
3131
id: checkout_ref
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v6
3333
with:
3434
path: 'ref'
3535
ref: ${{ github.ref }}
3636

3737
- name: Checkout release
3838
id: checkout_release
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v6
4040
with:
4141
path: 'release'
4242
ref: ${{ github.event.inputs.release }}

.github/workflows/push-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Checkout
3030
id: checkout
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v6
3232

3333
- name: Build and push dev tags
3434
id: build_and_push

.github/workflows/push-manual-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
2626
- name: Checkout ref
2727
id: checkout_ref
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v6
2929
with:
3030
path: 'ref'
3131
ref: ${{ github.ref }}
3232

3333
- name: Checkout release
3434
id: checkout_release
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v6
3636
with:
3737
path: 'release'
3838
ref: ${{ github.event.inputs.release }}

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Checkout
3030
id: checkout
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v6
3232

3333
- name: Get tag name
3434
run: echo "TAG=$(echo "${{ github.ref }}" | grep -oP 'refs/tags/\K(.+)')" >> $GITHUB_ENV

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
target_branch: rel/${{github.event.inputs.version}}
2020
version: ${{github.event.inputs.version}}
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Set up Node.js
2424
uses: actions/setup-node@v4
2525
with:

.github/workflows/smoke-anaconda.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Checkout
2121
id: checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v6
2323

2424
- name: Smoke test
2525
env:

.github/workflows/smoke-base-alpine.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Checkout
2121
id: checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v6
2323

2424
- name: Smoke test
2525
id: smoke_test

.github/workflows/smoke-base-debian.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Checkout
2121
id: checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v6
2323

2424
- name: Smoke test
2525
env:

.github/workflows/smoke-base-ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Checkout
2121
id: checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v6
2323

2424
- name: Smoke test
2525
env:

0 commit comments

Comments
 (0)