Skip to content

Commit 57aff40

Browse files
Bump the github-actions group across 1 directory with 7 updates
Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) | `7` | `11` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `dawidd6/action-download-artifact` from 7 to 11 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](dawidd6/action-download-artifact@v7...v11) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dawidd6/action-download-artifact dependency-version: '11' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 46623ce commit 57aff40

File tree

10 files changed

+36
-36
lines changed

10 files changed

+36
-36
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747

4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@v3 # nosemgrep
54+
uses: github/codeql-action/init@v4 # nosemgrep
5555
with:
5656
languages: ${{ matrix.language }}
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -65,7 +65,7 @@ jobs:
6565
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6666
# If this step fails, then you should remove it and run the build manually (see below)
6767
- name: Autobuild
68-
uses: github/codeql-action/autobuild@v3 # nosemgrep
68+
uses: github/codeql-action/autobuild@v4 # nosemgrep
6969

7070
# ℹ️ Command-line programs to run using the OS shell.
7171
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -78,6 +78,6 @@ jobs:
7878
# ./location_of_script_within_repo/buildscript.sh
7979

8080
- name: Perform CodeQL Analysis
81-
uses: github/codeql-action/analyze@v3 # nosemgrep
81+
uses: github/codeql-action/analyze@v4 # nosemgrep
8282
with:
8383
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: 'Checkout Repository'
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: 'Dependency Review'
2121
uses: actions/dependency-review-action@v4

.github/workflows/deploy-docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
deploy_docs:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020
lfs: true
21-
- uses: actions/setup-python@v5
21+
- uses: actions/setup-python@v6
2222
with:
2323
python-version: 3.12
2424
- uses: actions/cache@v4

.github/workflows/pipeline.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
fail-fast: false
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
27-
- uses: actions/setup-python@v5
26+
- uses: actions/checkout@v5
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install Dependencies and library
@@ -114,9 +114,9 @@ jobs:
114114
if: github.event.pull_request.draft == false
115115
runs-on: macos-latest
116116
steps:
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@v5
118118
- name: Set up Python
119-
uses: actions/setup-python@v5
119+
uses: actions/setup-python@v6
120120
with:
121121
python-version: "3.12"
122122
cache: "pip"
@@ -132,9 +132,9 @@ jobs:
132132
if: github.event.pull_request.draft == false
133133
runs-on: windows-latest
134134
steps:
135-
- uses: actions/checkout@v4
135+
- uses: actions/checkout@v5
136136
- name: Set up Python
137-
uses: actions/setup-python@v5
137+
uses: actions/setup-python@v6
138138
with:
139139
python-version: "3.12"
140140
cache: "pip"
@@ -160,16 +160,16 @@ jobs:
160160
runs-on: ubuntu-latest
161161

162162
steps:
163-
- uses: actions/checkout@v4
163+
- uses: actions/checkout@v5
164164

165-
- uses: actions/setup-python@v5
165+
- uses: actions/setup-python@v6
166166
with:
167167
python-version: "3.10"
168168
cache: "pip"
169169
cache-dependency-path: pyproject.toml
170170

171171
- name: Get coverage files
172-
uses: actions/download-artifact@v4
172+
uses: actions/download-artifact@v6
173173
with:
174174
pattern: .coverage*
175175
path: coverage
@@ -183,7 +183,7 @@ jobs:
183183
- run: coverage html -i --show-contexts --title "FastAgency coverage for ${{ github.sha }}"
184184

185185
- name: Store coverage html
186-
uses: actions/upload-artifact@v4
186+
uses: actions/upload-artifact@v5
187187
with:
188188
name: coverage-html
189189
path: htmlcov
@@ -199,8 +199,8 @@ jobs:
199199
env:
200200
SKIP: "static-analysis, test"
201201
steps:
202-
- uses: actions/checkout@v4
203-
- uses: actions/setup-python@v5
202+
- uses: actions/checkout@v5
203+
- uses: actions/setup-python@v6
204204
with:
205205
python-version: "3.10"
206206
- name: Set $PY environment variable

.github/workflows/publish-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/setup-python@v5
16+
- uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.10"
1919

2020
- run: pip install smokeshow
2121

22-
- uses: dawidd6/action-download-artifact@v7 # nosemgrep
22+
- uses: dawidd6/action-download-artifact@v11 # nosemgrep
2323
with:
2424
workflow: pipeline.yaml
2525
workflow_conclusion: success

.github/workflows/release_pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
GITHUB_CONTEXT: ${{ toJson(github) }}
1818
run: echo "$GITHUB_CONTEXT"
1919

20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.11"
2626
cache: "pip"

.github/workflows/test-external-weather.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929

3030
steps:
3131
- name: Checkout code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
- name: Set up Python
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: ${{ inputs.python-version }}
3838
cache: "pip"

.github/workflows/test-playwright.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ jobs:
7474
echo "POSTMAN_API_KEY=${{ secrets.POSTMAN_API_KEY }}" >> $GITHUB_ENV
7575
fi
7676
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
- name: Set up Python
79-
uses: actions/setup-python@v5
79+
uses: actions/setup-python@v6
8080
with:
8181
python-version: ${{ inputs.python-version }}
8282
cache: "pip"
@@ -92,7 +92,7 @@ jobs:
9292
- name: Install Pydantic v2
9393
run: pip install --pre "pydantic>=2,<3"
9494
- run: mkdir coverage
95-
- uses: actions/setup-node@v4
95+
- uses: actions/setup-node@v6
9696
with:
9797
node-version: lts/*
9898
- name: Install dependencies
@@ -114,7 +114,7 @@ jobs:
114114
- name: Run Playwright tests without LLMs
115115
if: ${{ inputs.python-version != '3.10' }}
116116
run: npx playwright test -c "playwright.coverage.config.ts"
117-
- uses: actions/upload-artifact@v4
117+
- uses: actions/upload-artifact@v5
118118
if: ${{ !cancelled() }}
119119
with:
120120
name: playwright-report.${{ runner.os }}-py${{ inputs.python-version }}-${{ inputs.use-llms }}
@@ -153,7 +153,7 @@ jobs:
153153
run: ls -al coverage
154154
- name: Store coverage files
155155
if: ${{ inputs.python-version != '3.10' }}
156-
uses: actions/upload-artifact@v4
156+
uses: actions/upload-artifact@v5
157157
with:
158158
name: .coverage.playwright.${{ runner.os }}-py${{ inputs.python-version }}-${{ inputs.use-llms }}
159159
path: coverage/.coverage.playwright.*

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
echo "BING_API_KEY=${{ secrets.BING_API_KEY }}" >> $GITHUB_ENV
7272
fi
7373
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v5
7575
- name: Set up Python
76-
uses: actions/setup-python@v5
76+
uses: actions/setup-python@v6
7777
with:
7878
python-version: ${{ inputs.python-version }}
7979
cache: "pip"
@@ -89,7 +89,7 @@ jobs:
8989
- name: Install Pydantic v2
9090
run: pip install --pre "pydantic>=2,<3"
9191
- run: mkdir coverage
92-
- uses: actions/setup-node@v4
92+
- uses: actions/setup-node@v6
9393
with:
9494
node-version: lts/*
9595
- name: Test without LLMs
@@ -107,7 +107,7 @@ jobs:
107107
- name: Check coverage file
108108
run: ls -al coverage
109109
- name: Store coverage files
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: .coverage.${{ runner.os }}-py${{ inputs.python-version }}-${{ inputs.use-llms }}
113113
path: coverage/.coverage.*

.github/workflows/update-release-notes.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
BRANCH_NAME: update-release-notes-${{ github.ref_name }}
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

@@ -33,7 +33,7 @@ jobs:
3333
private_key: ${{ secrets.APP_PRIVATE_KEY }}
3434

3535
- name: Set up Python
36-
uses: actions/setup-python@v5
36+
uses: actions/setup-python@v6
3737
with:
3838
python-version: '3.10'
3939

0 commit comments

Comments
 (0)