mirror of https://github.com/snachodog/mybuddy.git
Update CI action versions
This commit is contained in:
parent
98f46fe468
commit
4ff6f7dd9b
|
@ -11,7 +11,7 @@ runs:
|
|||
- name: Install Pipenv
|
||||
shell: bash
|
||||
run: pipx install pipenv
|
||||
- uses: actions/setup-python@v4
|
||||
- uses: actions/setup-python@v5
|
||||
id: setup-python
|
||||
with:
|
||||
python-version: ${{ inputs.python-version }}
|
||||
|
@ -23,6 +23,6 @@ runs:
|
|||
- name: Print installed dependency versions
|
||||
shell: bash
|
||||
run: pipenv graph
|
||||
- uses: actions/setup-node@v3
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
|
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
matrix:
|
||||
python-version: [ '3.10', '3.11', '3.12' ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ./.github/actions/setup
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
url: https://docs.baby-buddy.net
|
||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v34
|
||||
uses: tj-actions/changed-files@v42
|
||||
with:
|
||||
files: |
|
||||
docs/**
|
||||
|
@ -65,7 +65,7 @@ jobs:
|
|||
url: https://demo.baby-buddy.net
|
||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Push to dokku
|
||||
|
|
|
@ -21,11 +21,11 @@ jobs:
|
|||
matrix:
|
||||
language: [ 'javascript', 'python' ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: github/codeql-action/init@v2
|
||||
- uses: actions/checkout@v4
|
||||
- uses: github/codeql-action/init@v3
|
||||
with:
|
||||
config-file: ./.github/codeql/codeql-config.yml
|
||||
languages: ${{ matrix.language }}
|
||||
setup-python-dependencies: false
|
||||
- uses: ./.github/actions/setup
|
||||
- uses: github/codeql-action/analyze@v2
|
||||
- uses: github/codeql-action/analyze@v3
|
||||
|
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
url: http://pr-${{ github.event.pull_request.number }}.dokku.baby-buddy.net
|
||||
if: github.event.action == 'labeled' && github.event.label.name == 'to review'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Create review app
|
||||
|
|
Loading…
Reference in New Issue