Skip to content

Commit f6bdfa6

Browse files
authored
Merge pull request #38 from twangboy/update_actions_checkout
Update the rest of the checkout actions to v6
2 parents 91642d2 + c03e9d3 commit f6bdfa6

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
run-tests: ${{ steps.set-output.outputs.run-tests }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

@@ -58,7 +58,7 @@ jobs:
5858

5959
if: github.event_name == 'push' || needs.collect-changed-files.outputs.run-tests == 'true'
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262

6363
- name: Set up Python 3.10
6464
uses: actions/setup-python@v5
@@ -95,7 +95,7 @@ jobs:
9595
container: koalaman/shellcheck-alpine:latest
9696
if: github.event_name == 'push' || needs.collect-changed-files.outputs.run-tests == 'true'
9797
steps:
98-
- uses: actions/checkout@v4
98+
- uses: actions/checkout@v6
9999
- name: ShellCheck
100100
run: |
101101
shellcheck -s bash -f tty linux/svtminion.sh

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
permissions:
123123
contents: write # To be able to publish the release
124124
steps:
125-
- uses: actions/checkout@v4
125+
- uses: actions/checkout@v6
126126
with:
127127
ref: main
128128
repository: ${{ github.repository }}
@@ -192,7 +192,7 @@ jobs:
192192
pull-requests: write # For action peter-evans/create-pull-request
193193

194194
steps:
195-
- uses: actions/checkout@v4
195+
- uses: actions/checkout@v6
196196
with:
197197
ref: main
198198
repository: ${{ github.repository }}
@@ -203,7 +203,7 @@ jobs:
203203
echo "SH=$(sha256sum linux/svtminion.sh | awk '{ print $1 }')" >> "$GITHUB_ENV"
204204
echo "VMTS_VERSION=$(bash linux/svtminion.sh --version | awk '{ print $1 }')" >> "$GITHUB_ENV"
205205
206-
- uses: actions/checkout@v4
206+
- uses: actions/checkout@v6
207207
with:
208208
ref: main
209209
repository: ${{ github.repository }}

.github/workflows/templates/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
run-tests: ${{ steps.set-output.outputs.run-tests }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

@@ -58,7 +58,7 @@ jobs:
5858

5959
if: github.event_name == 'push' || needs.collect-changed-files.outputs.run-tests == 'true'
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262

6363
- name: Set up Python 3.10
6464
uses: actions/setup-python@v5
@@ -95,7 +95,7 @@ jobs:
9595
container: koalaman/shellcheck-alpine:latest
9696
if: github.event_name == 'push' || needs.collect-changed-files.outputs.run-tests == 'true'
9797
steps:
98-
- uses: actions/checkout@v4
98+
- uses: actions/checkout@v6
9999
- name: ShellCheck
100100
run: |
101101
shellcheck -s bash -f tty linux/svtminion.sh

.github/workflows/test-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
instance: ${{ fromJSON(inputs.instances) }}
4545

4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848

4949
- name: VMTools Salt
5050
run: |

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
instance: ${{ fromJSON(inputs.instances) }}
4545

4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848

4949
- name: Test SVT Minion Script
5050
run: |

0 commit comments

Comments
 (0)