Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#37)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kenneth Wußmann <[email protected]>
  • Loading branch information
dependabot[bot] and KennethWussmann authored Dec 21, 2023
1 parent c675000 commit 1d26f7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# upload changes.patch on failure
- name: Upload uncomitted changes
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: changes.patch
path: changes.patch
4 changes: 2 additions & 2 deletions scripts/steps/buildOAS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ export const buildOAS = async () => {
console.log(sectionHeader("📄 Building OpenAPI Spec"));

await Promise.all([
$`boats -i ./oas/index.yml -o ${join("build", "openapi", "simplelogin.json")} -f ${join(
$`boats --noVersionCheck -i ./oas/index.yml -o ${join("build", "openapi", "simplelogin.json")} -f ${join(
"oas",
"helpers",
"opId.ts",
)}`,
$`boats -i ./oas/index.yml -o ${join("build", "openapi", "simplelogin.yml")} -f ${join(
$`boats --noVersionCheck -i ./oas/index.yml -o ${join("build", "openapi", "simplelogin.yml")} -f ${join(
"oas",
"helpers",
"opId.ts",
Expand Down

0 comments on commit 1d26f7f

Please sign in to comment.