From 66a1aa3b27939939d287c3d6cd094fdde7de1b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Fri, 16 May 2025 23:52:53 +0200 Subject: [PATCH] ci: change rust toolchain profile to default (#74) --- .github/workflows/upstream.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml index 5a17061..4a69174 100644 --- a/.github/workflows/upstream.yml +++ b/.github/workflows/upstream.yml @@ -5,6 +5,9 @@ on: - cron: '00 16 * * *' workflow_dispatch: {} +permissions: + contents: write + jobs: check: name: Check for upstream releases @@ -16,7 +19,7 @@ jobs: - name: Set up Rust toolchain run: | - rustup toolchain install stable --no-self-update --profile minimal + rustup toolchain install stable --no-self-update --profile default rustup target add wasm32-unknown-unknown - name: Set up Rust cache