Skip to content

Commit f0b2fee

Browse files
authored
Merge pull request #2 from ember-tooling/fix-tools
Fix tooling versions
2 parents 545b3ae + 71adbbc commit f0b2fee

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
package:
2727
name: Package
28-
runs-on: ubuntu-20.04
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 10
3030
steps:
3131
- uses: actions/checkout@v4
@@ -34,23 +34,14 @@ jobs:
3434
- name: fetch all history and tags from all branches for gitversion
3535
run: git fetch --prune --unshallow
3636

37-
- name: DotNet Core SDK 3.1.0
38-
uses: actions/setup-dotnet@v1
39-
with:
40-
dotnet-version: 3.1.x
37+
- uses: actions/setup-dotnet@v4
4138

4239
- name: install gitversion tool
43-
uses: gittools/actions/gitversion/setup@v0.9
44-
with:
45-
versionSpec: '5.5.x'
46-
env:
47-
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
40+
uses: gittools/actions/gitversion/setup@v3.2.0
4841

4942
- name: execute gitversion
5043
id: gitversion # step id used as reference for output values
51-
uses: gittools/actions/gitversion/execute@v0.9.7
52-
env:
53-
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
44+
uses: gittools/actions/gitversion/execute@v3.2.0
5445

5546
- name: print gitversion
5647
run: |
@@ -80,8 +71,8 @@ jobs:
8071
- name: upload vsix as artifact
8172
uses: actions/upload-artifact@v4
8273
with:
83-
name: vscode-ember-${{steps.gitversion.outputs.majorMinorPatch}}.vsix
84-
path: ${{github.workspace}}/vscode-ember-${{steps.gitversion.outputs.majorMinorPatch}}.vsix
74+
name: emberjs-snippets-${{steps.gitversion.outputs.majorMinorPatch}}.vsix
75+
path: ${{github.workspace}}/emberjs-snippets-${{steps.gitversion.outputs.majorMinorPatch}}.vsix
8576

8677
- name: create a release
8778
if: github.ref == 'refs/heads/main'

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ember-snippets",
2+
"name": "emberjs-snippets",
33
"publisher": "EmberTooling",
44
"displayName": "Ember Polaris Snippets - gjs, gts, tests, services, etc",
55
"description": "Snippets for Ember projects for quickly generating boilerplate",
@@ -18,7 +18,8 @@
1818
"Snippets"
1919
],
2020
"engines": {
21-
"vscode": ">=1.0.0"
21+
"vscode": ">=1.0.0",
22+
"node": ">=20"
2223
},
2324
"keywords": [
2425
"Ember",
@@ -86,6 +87,7 @@
8687
"vs:publish:ci": "vsce publish --pat $VSCODE_TOKEN",
8788
"ov:publish:ci": "ovsx publish --pat $OPENVSX_TOKEN"
8889
},
90+
"packageManager": "pnpm@10.7.1",
8991
"devDependencies": {
9092
"@vscode/vsce": "^3.3.2",
9193
"ovsx": "^0.10.1",

0 commit comments

Comments
 (0)