Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/claude-auto-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Full history for better diff analysis

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/infrastructure-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
SUCCESS_TRACKING_ENABLED: "true"
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get current date for cache key
id: get-date
Expand All @@ -142,7 +142,7 @@ jobs:

- name: Restore instance state cache
id: cache-instance-state
uses: actions/cache/restore@v4.2.4
uses: actions/cache/restore@v4.3.0
with:
path: .cache/oci-state
key: ${{ steps.cache-key.outputs.key }}
Expand Down Expand Up @@ -186,15 +186,15 @@ jobs:
run: echo "oci-cli" > requirements.txt

- name: Setup Python
uses: actions/setup-python@v5.6.0
uses: actions/setup-python@v6.0.0
id: setup-python
with:
python-version: '3.x'
check-latest: false
update-environment: true

- name: Cache pip dependencies
uses: actions/cache@v4.2.4
uses: actions/cache@v4.3.0
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -352,7 +352,7 @@ jobs:

- name: Save instance state cache
if: always()
uses: actions/cache/save@v4.2.4
uses: actions/cache/save@v4.3.0
with:
path: .cache/oci-state
key: ${{ steps.cache-key.outputs.key }}
Expand All @@ -374,7 +374,7 @@ jobs:
if: failure()
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Debug Failure Analysis
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
Loading