Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ runs:

- name: Setup Python
if: inputs.python-version != 'installed'
uses: actions/setup-python@v5
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #v6.1.0
with:
python-version: ${{ inputs.python-version }}

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0

- name: Detect OS
id: os
Expand All @@ -48,7 +48,7 @@ runs:
shell: bash

- name: Cache PIP Packages
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
id: cache
if: github.event_name != 'schedule'
with:
Expand Down Expand Up @@ -120,7 +120,7 @@ runs:
shell: bash
- name: Upload changed expectation files
if: steps.changes.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
with:
name: Changed expectations (python-${{ inputs.python-version }}, ${{ inputs.os }})
path: changed-expectations.zip
Expand Down Expand Up @@ -156,7 +156,7 @@ runs:

- name: Upload Test Results
if: (!cancelled())
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
with:
name: Test Results (python-${{ inputs.python-version }}, ${{ inputs.os }})
path: |
Expand Down
4 changes: 2 additions & 2 deletions composite/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ runs:
shell: bash

- name: Restore PIP packages cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
id: cache
continue-on-error: true
with:
Expand Down Expand Up @@ -321,7 +321,7 @@ runs:
shell: bash

- name: Save PIP packages cache
uses: actions/cache/save@v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
if: ( success() || failure() ) && ! steps.cache.outputs.cache-hit
continue-on-error: true
with:
Expand Down
4 changes: 2 additions & 2 deletions linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ runs:
shell: bash

- name: Restore PIP packages cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
id: cache
continue-on-error: true
with:
Expand Down Expand Up @@ -302,7 +302,7 @@ runs:
shell: bash

- name: Save PIP packages cache
uses: actions/cache/save@v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
if: ( success() || failure() ) && ! steps.cache.outputs.cache-hit
continue-on-error: true
with:
Expand Down
4 changes: 2 additions & 2 deletions macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ runs:
shell: bash

- name: Restore PIP packages cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
id: cache
continue-on-error: true
with:
Expand Down Expand Up @@ -302,7 +302,7 @@ runs:
shell: bash

- name: Save PIP packages cache
uses: actions/cache/save@v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
if: ( success() || failure() ) && ! steps.cache.outputs.cache-hit
continue-on-error: true
with:
Expand Down
2 changes: 1 addition & 1 deletion misc/action/find-workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
using: 'composite'
steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #v6.1.0
with:
python-version: '3.10'

Expand Down
2 changes: 1 addition & 1 deletion misc/action/package-downloads/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
using: 'composite'
steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #v6.1.0
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ runs:
shell: pwsh

- name: Restore PIP packages cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
id: cache
continue-on-error: true
with:
Expand Down Expand Up @@ -308,7 +308,7 @@ runs:
shell: pwsh

- name: Save PIP packages cache
uses: actions/cache/save@v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
if: ( success() || failure() ) && ! steps.cache.outputs.cache-hit
continue-on-error: true
with:
Expand Down
4 changes: 2 additions & 2 deletions windows/bash/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ runs:
shell: bash

- name: Restore PIP packages cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
id: cache
continue-on-error: true
with:
Expand Down Expand Up @@ -306,7 +306,7 @@ runs:
shell: bash

- name: Save PIP packages cache
uses: actions/cache/save@v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
if: ( success() || failure() ) && ! steps.cache.outputs.cache-hit
continue-on-error: true
with:
Expand Down
Loading