Skip to content

Commit bb440a2

Browse files
authored
🤖 updated file(s) (#995)
1 parent 505106f commit bb440a2

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

‎.github/workflows/cla.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
&& github.event.comment.body == '@conda-bot check'
1616
|| github.event_name == 'pull_request_target'
1717
)
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-slim
1919
steps:
2020
- name: Check CLA
21-
uses: conda/actions/check-cla@f05161c6e6e37a49b17c8e0b436197b53830318a # v25.9.2
21+
uses: conda/actions/check-cla@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0
2222
with:
2323
# [required]
2424
# A token with ability to comment, label, and modify the commit status

‎.github/workflows/issues.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
!github.event.repository.fork
2121
&& !github.event.issue.pull_request
2222
&& contains(github.event.issue.labels.*.name, 'pending::feedback')
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-slim
2424
steps:
2525
# remove [pending::feedback]
2626
- uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0

‎.github/workflows/labels.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ on:
1818
jobs:
1919
sync:
2020
if: '!github.event.repository.fork'
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-slim
2222
env:
2323
GLOBAL: https://raw.githubusercontent.com/conda/infra/main/.github/global.yml
2424
LOCAL: .github/labels.yml
2525
steps:
26-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
26+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727

2828
- id: has_local
2929
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0

‎.github/workflows/lock.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
lock:
1717
if: '!github.event.repository.fork'
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-slim
1919
steps:
2020
- uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0
2121
with:

‎.github/workflows/project.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
add_to_project:
1313
if: '!github.event.repository.fork'
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-slim
1515
steps:
1616
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
1717
with:

‎.github/workflows/stale.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121
jobs:
2222
stale:
2323
if: '!github.event.repository.fork'
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-slim
2525
strategy:
2626
matrix:
2727
include:
@@ -33,7 +33,7 @@ jobs:
3333
days-before-issue-stale: 90
3434
days-before-issue-close: 21
3535
steps:
36-
- uses: conda/actions/read-yaml@f05161c6e6e37a49b17c8e0b436197b53830318a # v25.9.2
36+
- uses: conda/actions/read-yaml@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0
3737
id: read_yaml
3838
with:
3939
path: https://raw.githubusercontent.com/conda/infra/main/.github/messages.yml

‎.github/workflows/update.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
)
2929
)
3030
)
31-
runs-on: ubuntu-latest
31+
runs-on: ubuntu-slim
3232
steps:
3333
- if: github.event_name == 'issue_comment'
3434
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
@@ -44,7 +44,7 @@ jobs:
4444
echo REPOSITORY=$(curl --silent ${{ github.event.issue.pull_request.url }} | jq --raw-output '.head.repo.full_name') >> $GITHUB_ENV
4545
echo REF=$(curl --silent ${{ github.event.issue.pull_request.url }} | jq --raw-output '.head.ref') >> $GITHUB_ENV
4646
47-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
47+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4848
with:
4949
repository: ${{ env.REPOSITORY || github.repository }}
5050
ref: ${{ env.REF || '' }}
@@ -55,11 +55,11 @@ jobs:
5555
git config --global user.name 'Conda Bot'
5656
git config --global user.email '18747875+conda-bot@users.noreply.github.com'
5757
58-
- uses: conda/actions/combine-durations@f05161c6e6e37a49b17c8e0b436197b53830318a # v25.9.2
58+
- uses: conda/actions/combine-durations@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0
5959
id: durations
6060
continue-on-error: true
6161

62-
- uses: conda/actions/template-files@f05161c6e6e37a49b17c8e0b436197b53830318a # v25.9.2
62+
- uses: conda/actions/template-files@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0
6363
id: templates
6464
continue-on-error: true
6565

@@ -80,7 +80,7 @@ jobs:
8080
- if: github.event.comment.body != '@conda-bot render'
8181
id: create
8282
# no-op if no commits were made
83-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
83+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
8484
with:
8585
push-to-fork: ${{ env.FORK }}
8686
token: ${{ secrets.SYNC_TOKEN }}

0 commit comments

Comments
 (0)