Skip to content

Commit 8562d88

Browse files
authored
Merge pull request #224 from paulober/develop
Patch v3.7.8
2 parents c381d9f + 1d6c727 commit 8562d88

File tree

6 files changed

+34
-29
lines changed

6 files changed

+34
-29
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343

4444
- run: sed -i '1i//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}' .npmrc
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@v2
48+
uses: github/codeql-action/init@v3
4949
with:
5050
languages: ${{ matrix.language }}
5151
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -59,7 +59,7 @@ jobs:
5959
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6060
# If this step fails, then you should remove it and run the build manually (see below)
6161
- name: Autobuild
62-
uses: github/codeql-action/autobuild@v2
62+
uses: github/codeql-action/autobuild@v3
6363

6464
- name: Install Dependencies for custom build
6565
shell: bash
@@ -83,4 +83,4 @@ jobs:
8383
# ./location_of_script_within_repo/buildscript.sh
8484

8585
- name: Perform CodeQL Analysis
86-
uses: github/codeql-action/analyze@v2
86+
uses: github/codeql-action/analyze@v3

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v4
2929

30-
- name: Setup Node v18.15.x
31-
uses: actions/setup-node@v3
30+
- name: Setup Node v18.18.x
31+
uses: actions/setup-node@v4
3232
with:
33-
node-version: "18.15.x"
33+
node-version: "18.18.x"
3434
registry-url: "https://npm.pkg.github.com"
3535
scope: "@paulober"
3636
token: ${{ secrets.GITHUB_TOKEN }}
3737

38-
- name: Setup Python v3.11
39-
uses: actions/setup-python@v4
38+
- name: Setup Python v3.12
39+
uses: actions/setup-python@v5
4040
with:
41-
python-version: '3.11'
41+
python-version: '3.12'
4242

4343
- name: Install NPM Dependencies And Download Stubs
4444
shell: bash

.github/workflows/publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20-
- name: Setup Node v18.15.x
21-
uses: actions/setup-node@v3
20+
- name: Setup Node v18.18.x
21+
uses: actions/setup-node@v4
2222
with:
23-
node-version: '18.15.x'
23+
node-version: '18.18.x'
2424
registry-url: "https://npm.pkg.github.com"
2525
scope: "@paulober"
2626
token: ${{ secrets.GITHUB_TOKEN }}
2727

28-
- name: Setup Python v3.11
29-
uses: actions/setup-python@v4
28+
- name: Setup Python v3.12
29+
uses: actions/setup-python@v5
3030
with:
31-
python-version: '3.11'
31+
python-version: '3.12'
3232

3333
- name: Install NPM dependencies And Download Stubs
3434
shell: bash
@@ -45,13 +45,13 @@ jobs:
4545
OVSX_PAT: ${{ secrets.OPEN_VSX_TOKEN }}
4646

4747
- name: Upload Artifacts
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: Visual Studio Code extension package
5151
path: pico-w-go-*.vsix
5252

5353
- name: Upload Artifact To Release
54-
#gh api --method POST -H "Accept: application/vnd.github+json" /repos/paulober/Pico-W-Go/releases/$RELEASE_ID/assets
54+
#gh api --method POST -H "Accept: application/vnd.github+json" /repos/paulober/MicroPico/releases/$RELEASE_ID/assets
5555
run: gh release upload $RELEASE_TAG_NAME pico-w-go-*.vsix
5656
env:
5757
#RELEASE_ID: ${{ github.event.release.id }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ All notable changes to the "MicroPico" extension will be documented in this file
1010

1111
---
1212

13+
## [3.7.8] - 2024-06-01
14+
15+
### Changed
16+
- Upgraded to `pyboard-serial-com` `v3.0.9`
17+
1318
## [3.7.7] - 2024-05-30
1419

1520
### Added

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pico-w-go",
33
"displayName": "MicroPico",
44
"description": "Auto-completion, remote workspace and a REPL console integration for the Raspberry Pi Pico (W) with MicroPython firmware.",
5-
"version": "3.7.7",
5+
"version": "3.7.8",
66
"publisher": "paulober",
77
"license": "MPL-2.0",
88
"homepage": "https://github.com/paulober/MicroPico/blob/main/README.md",
@@ -607,7 +607,7 @@
607607
"typescript": "^5.4.5"
608608
},
609609
"dependencies": {
610-
"@paulober/pyboard-serial-com": "^3.0.8",
610+
"@paulober/pyboard-serial-com": "^3.0.9",
611611
"axios": "^1.6.8",
612612
"fs-extra": "^11.2.0",
613613
"lodash": "^4.17.21",

0 commit comments

Comments
 (0)