Skip to content

Commit

Permalink
Merge pull request #87 from akai-org/86-github-actions-bump-version
Browse files Browse the repository at this point in the history
Bump github actions versions
  • Loading branch information
mati2251 authored Mar 7, 2024
2 parents ab23c7a + c8a6ce5 commit a02a4ca
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
run:
working-directory: backend
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -33,9 +33,9 @@ jobs:
run:
working-directory: backend
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -44,7 +44,7 @@ jobs:
run: gradle ktlintScanning
- name: Upload analysis results to GitHub
if: always()
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: backend/report.sarif
wait-for-processing: true
8 changes: 4 additions & 4 deletions .github/workflows/frontend-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
security-events: write
actions: write
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: 'yarn'
cache-dependency-path: 'frontend/yarn.lock'
- name: Install dependencies
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: 'yarn'
cache-dependency-path: 'frontend/yarn.lock'
- name: Install dependencies
Expand All @@ -32,11 +32,11 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: 'yarn'
cache-dependency-path: 'frontend/yarn.lock'
- name: Install dependencies
Expand All @@ -51,7 +51,7 @@ jobs:
--ignore-path .gitignore
continue-on-error: true
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: frontend/eslint-results.sarif
wait-for-processing: true
Expand Down

0 comments on commit a02a4ca

Please sign in to comment.