Skip to content

Commit

Permalink
fix(SPT-30359): security fix (#202)
Browse files Browse the repository at this point in the history
* fix: security fix
  • Loading branch information
koushik-kiran-kumar authored Jun 27, 2024
1 parent 53ea3a0 commit 88365c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand All @@ -38,14 +38,14 @@ 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 }}

# 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

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -59,4 +59,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cachetools>=4.2.4
certifi>=2017
certifi==2024.6.2
pendulum==2.1.2; python_version<='3.7'
pendulum==3.0.0; python_version>='3.8'
pyjwt>=2.4.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def parse_requirements(requirement_file):


setup(
version="10.18.0",
version="10.18.1",
name="swimlane",
author="Swimlane",
author_email="[email protected]",
Expand Down

0 comments on commit 88365c2

Please sign in to comment.