Skip to content

Commit

Permalink
Update GitHub Actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielweyer committed Jan 31, 2024
1 parent ff2031b commit bf3b625
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/security-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: yarn install
Expand All @@ -64,19 +64,19 @@ jobs:
cd dist
zip -r ./api.zip ./*
- name: Upload API artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: api
path: api/dist/api.zip
if-no-files-found: error
- name: Upload web artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: web
path: dist/browser
if-no-files-found: error
- name: Upload bicep artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bicep
path: deploy
Expand Down

0 comments on commit bf3b625

Please sign in to comment.