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/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Cache conda environment
id: conda-env-cache
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
with:
key: conda|${{runner.os}}-${{runner.arch}}|${{ hashFiles(format('requirements/locks/{0}-lock-linux-64.txt', matrix.py-ver)) }}
path: |
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
mv .coverage ".coverage.${py_ver}"

- name: Upload coverage data as artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: coverage-data-${{ matrix.py-ver }}
path: .coverage.*
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: pip install coverage

- name: Download coverage artifact
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
pattern: coverage-data-*
merge-multiple: true
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
python-version: "3.x"

- name: Restore pre-commit cache
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
with:
key: pre-commit|${{runner.os}}-${{runner.arch}}|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
path: ~/.cache/pre-commit
Expand All @@ -173,7 +173,7 @@ jobs:

- name: Cache conda environment
id: conda-env-cache
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
with:
key: conda|${{runner.os}}-${{runner.arch}}|${{hashFiles('requirements/locks/latest')}}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: python3 -m build

- name: "Upload package as artifact"
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: packages
path: dist/
Expand All @@ -57,7 +57,7 @@ jobs:
id-token: write
steps:
- name: Download package artifact
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: packages
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: pre-commit autoupdate --freeze

- name: Generate GitHub App Token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859
id: app-token
with:
app-id: ${{ secrets.AUTH_APP_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Cache conda environment
id: conda-env-cache
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
with:
key: conda|${{runner.os}}-${{runner.arch}}|${{hashFiles('requirements/locks/latest')}}
path: |
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Cache conda environment
id: conda-env-cache
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
with:
key: conda|${{runner.os}}-${{runner.arch}}|${{ hashFiles(format('requirements/locks/{0}-lock-linux-64.txt', matrix.py-ver)) }}
path: |
Expand Down
Loading