Skip to content

Commit 608227a

Browse files
Bump actions/download-artifact from 4 to 5 (#620)
* Bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Make dependabot updates happen at quarterly interval Xref https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#schedule- * Set explicit write content write permissions on commit-lockfiles job Fix zizmor `warning[excessive-permissions]: overly broad permissions`. Xref https://docs.zizmor.sh/audits/#excessive-permissions --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wei Ji <23487320+weiji14@users.noreply.github.com>
1 parent 58b64cc commit 608227a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ updates:
88
- package-ecosystem: "github-actions" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: "monthly"
11+
interval: "quarterly"

.github/workflows/CondaLock.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
repository_dispatch:
77
types: [condalock-command]
88

9+
permissions: {}
10+
911
jobs:
1012
condalock:
1113
strategy:
@@ -60,6 +62,8 @@ jobs:
6062
commit-lockfiles:
6163
needs: condalock
6264
runs-on: ubuntu-latest
65+
permissions:
66+
contents: write
6367
steps:
6468
- name: Checkout Repository
6569
uses: actions/checkout@v4
@@ -70,7 +74,7 @@ jobs:
7074
ref: ${{ github.event.client_payload.pull_request.head.ref }}
7175

7276
# Download all artifacts from previous matrix job
73-
- uses: actions/download-artifact@v4
77+
- uses: actions/download-artifact@v5
7478

7579
- name: Commit condalock files to PR
7680
run: |

0 commit comments

Comments
 (0)