Skip to content

Commit adf5df0

Browse files
renovate[bot]AlexSkrypnyk
authored andcommitted
Update GitHub Actions to v6
1 parent 02d6e3b commit adf5df0

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build-test-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
8585

8686
- name: Check out code
87-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
87+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
8888
with:
8989
# Do not keep SSH credentials after checkout to allow adding custom SSH keys.
9090
persist-credentials: false
@@ -203,7 +203,7 @@ jobs:
203203
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
204204

205205
- name: Check out code
206-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
206+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
207207

208208
- name: Process the codebase to run in CI
209209
run: find . -name "docker-compose.yml" -print0 | xargs -0 -I {} sh -c "sed -i -e '/###/d' {} && sed -i -e 's/##//' {}"
@@ -426,7 +426,7 @@ jobs:
426426
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
427427

428428
- name: Checkout code
429-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
429+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
430430
with:
431431
# Fetch all history for git repository.
432432
fetch-depth: 0

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
echo "should_run=true" >> "$GITHUB_OUTPUT"
4343
4444
- name: Checkout
45-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
45+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4646

4747
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
4848
with:

.github/workflows/vortex-release-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
34+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
3535
with:
3636
persist-credentials: false
3737

@@ -95,7 +95,7 @@ jobs:
9595

9696
steps:
9797
- name: Checkout code
98-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
98+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
9999
with:
100100
fetch-depth: 0
101101

.github/workflows/vortex-test-common.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
36+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
3737
with:
3838
fetch-depth: 0
3939
persist-credentials: false
@@ -133,7 +133,7 @@ jobs:
133133

134134
steps:
135135
- name: Checkout code
136-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
136+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
137137
with:
138138
fetch-depth: 0
139139
persist-credentials: false
@@ -204,7 +204,7 @@ jobs:
204204

205205
steps:
206206
- name: Checkout code
207-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
207+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
208208

209209
- name: Login to container registry
210210
run: ./scripts/vortex/login-container-registry.sh

.github/workflows/vortex-test-docs.yml

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

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
17+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/vortex-test-installer.yml

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

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
24+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2525

2626
- name: Setup PHP
2727
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2

0 commit comments

Comments
 (0)