Skip to content

Commit

Permalink
⬆️ Update GHA versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Jan 9, 2024
1 parent 3e8397d commit 735682f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: actions/setup-node@v2-beta
- uses: actions/setup-node@v4
with:
node-version: '16'

Expand All @@ -62,15 +62,15 @@ jobs:
coverage run src/manage.py test src
- name: Publish coverage report
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

docs:
runs-on: ubuntu-latest
name: Documentation build

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand All @@ -83,7 +83,7 @@ jobs:
name: Docker image build

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Determine tag/commit hash
id: vars
run: |
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:

steps:
- name: Download built image
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docker-image
- name: Scan image with Trivy
Expand All @@ -146,9 +146,9 @@ jobs:
if: github.event_name == 'push' # exclude PRs/forks

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download built image
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: docker-image

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand All @@ -32,8 +32,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand All @@ -46,8 +46,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 735682f

Please sign in to comment.