Skip to content

Commit 2b923ad

Browse files
chore(deps): bump the github-actions group with 9 updates
Bumps the github-actions group with 9 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [actions/cache](https://github.com/actions/cache) | `3` | `5` | | [pnpm/action-setup](https://github.com/pnpm/action-setup) | `3` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `3` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `1` | `2` | | [actions/setup-python](https://github.com/actions/setup-python) | `2` | `6` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `1.26.0` | `3.0.1` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) Updates `actions/cache` from 3 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v5) Updates `pnpm/action-setup` from 3 to 5 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](pnpm/action-setup@v3...v5) Updates `actions/setup-node` from 3 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v3...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) 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 `dependabot/fetch-metadata` from 1 to 2 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](dependabot/fetch-metadata@v1...v2) Updates `actions/setup-python` from 2 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v6) Updates `slackapi/slack-github-action` from 1.26.0 to 3.0.1 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](slackapi/slack-github-action@v1.26.0...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pnpm/action-setup dependency-version: '5' 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 - dependency-name: actions/github-script dependency-version: '8' 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: dependabot/fetch-metadata dependency-version: '2' 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: slackapi/slack-github-action dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7edd17e commit 2b923ad

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
linting:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v6
2222
- name: Install uv and set Python version
2323
uses: astral-sh/setup-uv@v7
2424
with:
@@ -33,14 +33,14 @@ jobs:
3333
type-checking:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v6
3737
- name: Install uv and set Python version
3838
uses: astral-sh/setup-uv@v7
3939
with:
4040
version: "0.11.2"
4141
python-version: "3.13"
4242
enable-cache: true
43-
- uses: actions/cache@v3
43+
- uses: actions/cache@v5
4444
name: Cache mypy cache
4545
with:
4646
path: ./.mypy_cache
@@ -75,8 +75,8 @@ jobs:
7575

7676
name: Test on Python version ${{ matrix.python-version }}
7777
steps:
78-
- uses: actions/checkout@v3
79-
- uses: pnpm/action-setup@v3
78+
- uses: actions/checkout@v6
79+
- uses: pnpm/action-setup@v5
8080
with:
8181
version: 10.33.0
8282

@@ -85,12 +85,12 @@ jobs:
8585
git clone https://github.com/langfuse/langfuse.git ./langfuse-server && echo $(cd ./langfuse-server && git rev-parse HEAD)
8686
8787
- name: Setup node (for langfuse server)
88-
uses: actions/setup-node@v3
88+
uses: actions/setup-node@v6
8989
with:
9090
node-version: 24
9191

9292
- name: Cache langfuse server dependencies
93-
uses: actions/cache@v3
93+
uses: actions/cache@v5
9494
with:
9595
path: ./langfuse-server/node_modules
9696
key: |

.github/workflows/claude-review-maintainer-prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: Check author permission and existing review request
1818
id: check
19-
uses: actions/github-script@v7
19+
uses: actions/github-script@v8
2020
with:
2121
script: |
2222
const owner = context.repo.owner;
@@ -57,7 +57,7 @@ jobs:
5757
5858
- name: Add Claude review comment
5959
if: steps.check.outputs.should_comment == 'true'
60-
uses: actions/github-script@v7
60+
uses: actions/github-script@v8
6161
with:
6262
script: |
6363
await github.rest.issues.createComment({

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v6
5959

6060
# Initializes the CodeQL tools for scanning.
6161
- name: Initialize CodeQL
62-
uses: github/codeql-action/init@v3
62+
uses: github/codeql-action/init@v4
6363
with:
6464
languages: ${{ matrix.language }}
6565
build-mode: ${{ matrix.build-mode }}
@@ -87,6 +87,6 @@ jobs:
8787
exit 1
8888
8989
- name: Perform CodeQL Analysis
90-
uses: github/codeql-action/analyze@v3
90+
uses: github/codeql-action/analyze@v4
9191
with:
9292
category: "/language:${{matrix.language}}"

.github/workflows/dependabot-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Dependabot metadata
1717
id: metadata
18-
uses: dependabot/fetch-metadata@v1
18+
uses: dependabot/fetch-metadata@v2
1919
with:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121
- name: Enable auto-merge for Dependabot PRs

.github/workflows/package-availability-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies using pip

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
fi
6363
6464
- name: Checkout repository
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666
with:
6767
fetch-depth: 0
6868
token: ${{ secrets.GH_ACCESS_TOKEN }}
@@ -299,7 +299,7 @@ jobs:
299299

300300
- name: Notify Slack on success
301301
if: success()
302-
uses: slackapi/slack-github-action@v1.26.0
302+
uses: slackapi/slack-github-action@v3.0.1
303303
with:
304304
payload: |
305305
{
@@ -384,7 +384,7 @@ jobs:
384384

385385
- name: Notify Slack on failure
386386
if: failure()
387-
uses: slackapi/slack-github-action@v1.26.0
387+
uses: slackapi/slack-github-action@v3.0.1
388388
with:
389389
payload: |
390390
{

0 commit comments

Comments
 (0)