Skip to content

Commit 99af7ff

Browse files
committed
fix coderabbitai review
1 parent 645af4c commit 99af7ff

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/integration-smoke.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ jobs:
1515
runs-on: ubuntu-latest
1616
timeout-minutes: 15
1717
steps:
18-
- uses: actions/checkout@v4
18+
# actions/checkout v6.0.2
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
20+
with:
21+
persist-credentials: false
1922

20-
- uses: actions/setup-python@v5
23+
# actions/setup-python v6.2.0
24+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2125
with:
2226
python-version: '3.12'
2327

@@ -26,7 +30,8 @@ jobs:
2630

2731
- name: Upload logs on failure
2832
if: failure()
29-
uses: actions/upload-artifact@v4
33+
# actions/upload-artifact v4.6.2
34+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
3035
with:
3136
name: integration-smoke-logs
3237
path: /tmp/compose-logs.txt

scripts/integration-smoke.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ source "${SCRIPT_DIR}/lib/weblate-stack.sh"
1414

1515
cleanup() {
1616
local exit_code=$?
17+
set +e
1718
echo "--- Collecting logs ---"
1819
stack_logs /tmp/compose-logs.txt
1920
echo "--- Tearing down stack ---"

0 commit comments

Comments
 (0)