Skip to content

Commit

Permalink
Merge pull request #328 from bigredfrog/warnings2
Browse files Browse the repository at this point in the history
  • Loading branch information
shauneccles committed Mar 21, 2023
2 parents 77f755b + 9a3061c commit dbcf354
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-frontend-v2.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: [14, 16]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: YeonV/LedFx-Frontend-v2
ref: main
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci-build.yml
Expand Up @@ -13,14 +13,14 @@ jobs:
python: [3.8,3.9,3.10.x]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3.4.0
uses: actions/checkout@v3
- name: Install build dependencies
run: |
sudo apt-get update && sudo apt-get install -y \
gcc libatlas3-base portaudio19-dev
- name: Setup Python ${{ matrix.python }}
id: python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Build a binary wheel
Expand All @@ -39,10 +39,10 @@ jobs:
python: [3.8,3.9,3.10.x]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3.4.0
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
id: python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Build a binary wheel
Expand All @@ -61,13 +61,13 @@ jobs:
python: [3.8,3.9,3.10.x]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3.4.0
uses: actions/checkout@v3
- name: Install build dependencies
run: |
brew install portaudio
- name: Setup Python ${{ matrix.python }}
id: python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Build a binary wheel
Expand All @@ -86,7 +86,7 @@ jobs:
# node-version: [10, 12, 14]
# steps:
# - name: Check out code from GitHub
# uses: actions/checkout@v3.4.0
# uses: actions/checkout@v3
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v2
# with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-linting.yml
Expand Up @@ -20,15 +20,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v4
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Restore base Python virtual environment
id: cache-venv
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: venv
key: >-
Expand All @@ -47,7 +47,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Restore pre-commit environment from cache-name
id: cache-precommit
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ env.PRE_COMMIT_HOME }}
key: |
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -32,18 +32,18 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install system dependencies
run: |
sudo apt-get update && sudo apt-get install -y portaudio19-dev libatlas3-base
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v4
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Restore Python virtual environment
id: cache-venv
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: venv
key: >-
Expand All @@ -65,17 +65,17 @@ jobs:
# Initializes the CodeQL tools for scanning
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# Override the default behavior so that the action doesn't attempt
# to auto-install Python dependencies
setup-python-dependencies: false
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2

analyze-javascript:
name: Analyze Javascript
Expand All @@ -91,18 +91,18 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
4 changes: 2 additions & 2 deletions .github/workflows/publish-release-pypi.yml
Expand Up @@ -19,15 +19,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup sentry config
shell: bash
env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN_PYPI }}
run: |
sed -i 's,DSN,'"$SENTRY_DSN"',' ./ledfx/sentry_config.py
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v4
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install build dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sentry-dev-release.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Create sentry release
uses: getsentry/action-release@v1
env:
Expand Down

0 comments on commit dbcf354

Please sign in to comment.