Skip to content

Commit

Permalink
chore: bump github action deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Jan 4, 2025
1 parent 94b7417 commit 0197a2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ 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 }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -49,7 +49,7 @@ jobs:
# 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 @@ -63,4 +63,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3

test:
needs: pre-commit
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
]
runs-on: ${{ matrix.platform.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Wake up httpbin server
run: |
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
--health-timeout 5s
--health-retries 50
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Wake up httpbin server
run: |
Expand All @@ -118,7 +118,7 @@ jobs:
run: poetry run pytest -v -rs tests --runslow --integration --cov=./ --cov-report=xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
Expand All @@ -133,7 +133,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python 3.13
uses: actions/setup-python@v5
Expand Down

0 comments on commit 0197a2d

Please sign in to comment.