You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/codeql-analysis.yml
+38-39Lines changed: 38 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -38,49 +38,48 @@ jobs:
38
38
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
39
39
40
40
steps:
41
-
- name: Checkout repository
42
-
uses: actions/checkout@v4
43
-
44
-
- run: sed -i '1i//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}' .npmrc
41
+
- name: Checkout repository
42
+
uses: actions/checkout@v5
43
+
with:
44
+
persist-credentials: false
45
45
46
-
# Initializes the CodeQL tools for scanning.
47
-
- name: Initialize CodeQL
48
-
uses: github/codeql-action/init@v3
49
-
with:
50
-
languages: ${{ matrix.language }}
51
-
# If you wish to specify custom queries, you can do so here or in a config file.
52
-
# By default, queries listed here will override any specified in a config file.
53
-
# Prefix the list here with "+" to use these queries and those in the config file.
54
-
55
-
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
56
-
# queries: security-extended,security-and-quality
46
+
- run: sed -i '1i//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}' .npmrc
57
47
58
-
59
-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
60
-
# If this step fails, then you should remove it and run the build manually (see below)
61
-
- name: Autobuild
62
-
uses: github/codeql-action/autobuild@v3
63
-
64
-
- name: Install Dependencies for custom build
65
-
shell: bash
66
-
run: |
67
-
sed -i '1i//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}' .npmrc
68
-
npm ci --no-audit
69
-
env:
70
-
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
+
# Initializes the CodeQL tools for scanning.
49
+
- name: Initialize CodeQL
50
+
uses: github/codeql-action/init@v3
51
+
with:
52
+
languages: ${{ matrix.language }}
53
+
# If you wish to specify custom queries, you can do so here or in a config file.
54
+
# By default, queries listed here will override any specified in a config file.
55
+
# Prefix the list here with "+" to use these queries and those in the config file.
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
**MicroPico** is a Visual Studio Code extension designed to simplify and accelerate the development of MicroPython projects for the Raspberry Pi Pico and Pico W boards. This tool streamlines the coding process, providing code highlighting, auto-completion, code snippets, and project management features, all tailored for the seamless development experience with MicroPython on Raspberry Pi Pico and Pico W microcontrollers.
6
6
7
-
> __Included auto-completion based on Raspberry Pi Pico W MicroPython firmware: [RPI_PICO_W-20241129-v1.24.1.uf2](https://micropython.org/resources/firmware/RPI_PICO_W-20241129-v1.24.1.uf2) from the [micropython-stubs project](https://github.com/Josverl/micropython-stubs)__
7
+
> __Included auto-completion based on Raspberry Pi Pico W MicroPython firmware: [RPI_PICO2_W-20250809-v1.26.0.uf2](https://micropython.org/resources/firmware/RPI_PICO2_W-20250809-v1.26.0.uf2) from the [micropython-stubs project](https://github.com/Josverl/micropython-stubs)__
8
8
9
9
Works with:
10
10
| Platform | x86 | arm64 | armhf |
@@ -29,7 +29,7 @@ Works with:
29
29
30
30
## Requirements
31
31
32
-
*[Visual Studio Code v1.92.1 or newer](https://code.visualstudio.com/Download)
32
+
*[Visual Studio Code v1.103.2 or newer](https://code.visualstudio.com/Download)
33
33
*[Python 3.10 or newer](https://www.python.org/downloads/)
34
34
35
35
*[MicroPython firmware](https://micropython.org/download) flashed onto the Raspberry Pi Pico:
@@ -47,7 +47,7 @@ On most Linux installations the device file of the Pico serial port is owned by
47
47
48
48
## Getting started
49
49
50
-
- First of all open a folder and run `> MicroPico > Initialize MicroPico Project` command via `Ctrl+Shift+P` (or the equivalent on your platform) VS Code command palette. This will import stubs for autocompletion and the settings into your project folder. For the autocompletion to work, the extension prompts you (after project configuration) to install recommended extensions mentioned in [\#Requirements](#requirements).
50
+
- First of all open a folder and run `> MicroPico > Initialize MicroPico project` command via `Ctrl+Shift+P` (or the equivalent on your platform) VS Code command palette. This will import stubs for autocompletion and the settings into your project folder. For the autocompletion to work, the extension prompts you (after project configuration) to install recommended extensions mentioned in [\#Requirements](#requirements).
51
51
52
52
- Have the onboard LED flashing in under 5 minutes:
0 commit comments