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