From a0b54eae6f12f30b8e1314b5f1f959f1296d534f Mon Sep 17 00:00:00 2001 From: Leon Kiefer Date: Fri, 27 Sep 2024 12:23:41 +0200 Subject: [PATCH] Update github actions to v4 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5825f69..0300984 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: | @@ -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 @@ -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