Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
shell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: bash syntax check
run: |
Expand All @@ -24,8 +24,8 @@ jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand All @@ -44,15 +44,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Test plugin build
run: |
chmod +x build-plugin.sh
./build-plugin.sh

- name: Upload zip artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: findgcp-plugin-zip
path: dist/findgcp-*.zip
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Verify tag matches manifest version
run: |
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Lint-only; the helper script is not part of the plugin zip, so the published
`1.1.2` artifact is unchanged.

### Changed
- CI: bumped GitHub Actions off the deprecated Node.js 20 runtime —
`actions/checkout@v4 → v6`, `actions/setup-python@v5 → v6`,
`actions/upload-artifact@v4 → v7`. Workflow-only; no effect on the plugin.

## [1.1.2] - 2026-06-11

Robustness fixes from a second code review. The version bump also re-busts the
Expand Down