Skip to content

Commit b5ac44f

Browse files
chore(deps): update github actions
1 parent fcccff5 commit b5ac44f

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

.github/workflows/integration-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
- name: Verify Conda platform
5252
run: echo "Conda platform is $CONDA_PLATFORM"
5353

54-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
54+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5555
with:
5656
persist-credentials: false
5757
- name: Set up Python
58-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
58+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5959
with:
6060
python-version: ${{ matrix.python-version }}
6161
- name: install conda-lock
@@ -137,10 +137,10 @@ jobs:
137137
os: [ ubuntu-latest, macos-latest, windows-latest ]
138138
python-version: [ "3.10", "3.14" ]
139139
steps:
140-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
140+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
141141
with:
142142
persist-credentials: false
143-
- uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f # v3.2.0
143+
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
144144
with:
145145
auto-activate-base: true
146146
python-version: ${{ matrix.python-version }}
@@ -184,7 +184,7 @@ jobs:
184184
os: [ ubuntu-latest, macos-latest, windows-latest ]
185185
python-version: [ "3.10" ]
186186
steps:
187-
- uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f # v3.2.0
187+
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
188188
with:
189189
auto-activate-base: true
190190
python-version: ${{ matrix.python-version }}

.github/workflows/mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
permissions:
2626
contents: write # for mkdocs gh-deploy to push to gh-pages branch
2727
steps:
28-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929
with:
3030
submodules: "recursive"
3131
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
@@ -48,7 +48,7 @@ jobs:
4848

4949
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
5050

51-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
51+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
5252
with:
5353
key: mkdocs-material-${{ env.cache_id }}
5454
path: .cache

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
contents: read
1818
actions: write # for uploading artifacts
1919
steps:
20-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
with:
2222
fetch-depth: 0
2323
persist-credentials: false
2424

2525
- name: Set up Python
26-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
26+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2727
with:
28-
python-version: "3.10"
28+
python-version: "3.14"
2929

3030
- name: build
3131
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
PYTHONUNBUFFERED: "1"
8989
FORCE_COLOR: "1"
9090
steps:
91-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
91+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9292
with:
9393
fetch-depth: 0
9494
persist-credentials: false

.github/workflows/typecheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ jobs:
4343
os: ubuntu-latest
4444
steps:
4545
# Initialization
46-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
46+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4747
with:
4848
fetch-depth: 0
4949
persist-credentials: false
50-
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
50+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5151
if: matrix.setup-micromamba == false
5252
with:
5353
python-version: 3.14

.github/workflows/update-lockfile.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
contents: read
2929
actions: write # for uploading artifacts
3030
steps:
31-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
31+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3232
with:
3333
persist-credentials: false
3434
- name: Install Micromamba
@@ -64,7 +64,7 @@ jobs:
6464
pull-requests: write # for creating pull requests
6565
actions: read # for downloading artifacts
6666
steps:
67-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
67+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6868
with:
6969
persist-credentials: false
7070

@@ -74,7 +74,7 @@ jobs:
7474
path: environments/
7575

7676
- name: Open a pull request
77-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
77+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
7878
with:
7979
# # The default GITHUB_TOKEN doesn't allow other workflows to trigger.
8080
# # Thus if there are tests to be run, they won't be run. For more info,

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
echo "REPOSITORY=${REPOSITORY}" >> $GITHUB_ENV
5555
echo "REF=${REF}" >> $GITHUB_ENV
5656
57-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
57+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5858
with:
5959
repository: ${{ env.REPOSITORY || github.repository }}
6060
ref: ${{ env.REF || '' }}
@@ -91,7 +91,7 @@ jobs:
9191
- if: github.event.comment.body != '@conda-bot render'
9292
id: create
9393
# no-op if no commits were made
94-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
94+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
9595
with:
9696
push-to-fork: ${{ env.FORK }}
9797
token: ${{ secrets.SYNC_TOKEN }}

.github/workflows/zizmor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
actions: read # only needed for private repos
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
20+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
with:
2222
persist-credentials: false
2323

2424
- name: Run zizmor 🌈
25-
uses: zizmorcore/zizmor-action@e639db99335bc9038abc0e066dfcd72e23d26fb4 # v0.3.0
25+
uses: zizmorcore/zizmor-action@135698455da5c3b3e55f73f4419e481ab68cdd95 # v0.4.1
2626
with:
2727
persona: pedantic

0 commit comments

Comments
 (0)