Skip to content

Commit 1b4a674

Browse files
author
Radu M
authored
Merge pull request #17 from radu-matei/fix-path-deprecation
2 parents 4efc704 + f7c11df commit 1b4a674

4 files changed

Lines changed: 21 additions & 26 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
pathInArchive: "windows-amd64/helm.exe",
4646
}
4747
steps:
48-
- uses: engineerd/configurator@v0.0.4
48+
- uses: engineerd/configurator@v0.0.5
4949
with:
5050
name: ${{ matrix.config.name }}
5151
url: ${{ matrix.config.url }}
@@ -113,7 +113,7 @@ jobs:
113113
pathInArchive: "windows-amd64/helm.exe",
114114
}
115115
steps:
116-
- uses: engineerd/configurator@v0.0.4
116+
- uses: engineerd/configurator@v0.0.5
117117
with:
118118
name: ${{ matrix.config.name }}
119119
pathInArchive: ${{ matrix.config.pathInArchive }}
@@ -136,7 +136,7 @@ jobs:
136136
kind:
137137
runs-on: ubuntu-latest
138138
steps:
139-
- uses: engineerd/configurator@v0.0.4
139+
- uses: engineerd/configurator@v0.0.5
140140
with:
141141
name: "kind"
142142
fromGitHubReleases: "true"
@@ -163,7 +163,7 @@ jobs:
163163
kind:
164164
runs-on: ubuntu-latest
165165
steps:
166-
- uses: engineerd/configurator@v0.0.4
166+
- uses: engineerd/configurator@v0.0.5
167167
with:
168168
name: "kind"
169169
url: "https://github.com/kubernetes-sigs/kind/releases/download/v0.8.1/kind-linux-amd64"
@@ -183,7 +183,7 @@ jobs:
183183
kind:
184184
runs-on: ubuntu-latest
185185
steps:
186-
- uses: engineerd/configurator@v0.0.4
186+
- uses: engineerd/configurator@v0.0.5
187187
with:
188188
name: "h3"
189189
url: "https://get.helm.sh/helm-v3.3.0-linux-amd64.tar.gz"
@@ -204,7 +204,7 @@ jobs:
204204
kind:
205205
runs-on: windows-latest
206206
steps:
207-
- uses: engineerd/configurator@v0.0.4
207+
- uses: engineerd/configurator@v0.0.5
208208
with:
209209
name: "h3.exe"
210210
url: "https://get.helm.sh/helm-v3.3.0-windows-amd64.zip"

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "configurator",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"private": true,
55
"description": "A GitHub Action that configures statically compiled tools",
66
"main": "lib/main.js",
@@ -20,11 +20,11 @@
2020
"author": "Engineerd",
2121
"license": "MIT",
2222
"dependencies": {
23-
"@actions/core": "^1.2.5",
23+
"@actions/core": "^1.2.6",
2424
"@actions/exec": "^1.0.4",
2525
"@actions/github": "^4.0.0",
2626
"@actions/io": "^1.0.2",
27-
"@actions/tool-cache": "^1.6.0",
27+
"@actions/tool-cache": "^1.6.1",
2828
"mustache": "^4.0.1",
2929
"semver": "^7.3.2"
3030
},

test/action.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,7 @@ describe("correctly select GitHub release based on version constraints", async (
179179

180180
it("check latest prerelease", async () => {
181181
let tag = await getTag(token, "engineerd/setup-kind", "latest", true);
182-
assert.equal(tag, "v0.4.0");
183-
});
184-
185-
it("check latest non-prerelease", async () => {
186-
let tag = await getTag(token, "engineerd/setup-kind", "latest", false);
187-
assert.equal(tag, "v0.3.0");
182+
assert.equal(tag, "v0.5.0");
188183
});
189184
});
190185

0 commit comments

Comments
 (0)