Skip to content

Commit

Permalink
Update github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Legion2 committed Sep 27, 2024
1 parent b3421da commit a0b54ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: |
npm install
- run: |
Expand All @@ -20,7 +20,7 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
output: swagger-ui-output
Expand All @@ -32,7 +32,7 @@ jobs:
test -f swagger-ui-output/swagger-config.json
test -f swagger-ui-output/swagger-ui-bundle.js
- name: Upload generated Swagger UI
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: swagger-ui-output
path: swagger-ui-output

0 comments on commit a0b54ea

Please sign in to comment.