Skip to content

Commit 68f78de

Browse files
jwesleyeclaude
andcommitted
ci: update GitHub Actions to latest versions
Update outdated GitHub Actions dependencies to address dependabot PRs that were closed due to inactivity: - actions/first-interaction: v1 → v3 - actions/labeler: v5 → v6 - actions/setup-python: v4 → v6 - codecov/codecov-action: v3 → v5 - actions/stale: v9 → v10 Also created missing labels (dependencies, github-actions) that dependabot requires for proper PR labeling. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 81e0aaa commit 68f78de

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/greet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Greet first-time contributor
20-
uses: actions/first-interaction@v1
20+
uses: actions/first-interaction@v3
2121
with:
2222
repo-token: ${{ secrets.GITHUB_TOKEN }}
2323

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Label based on changed files
21-
uses: actions/labeler@v5
21+
uses: actions/labeler@v6
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
configuration-path: .github/labeler.yml

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pull-requests: write
1515

1616
steps:
17-
- uses: actions/stale@v9
17+
- uses: actions/stale@v10
1818
with:
1919
# General settings
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

@@ -40,7 +40,7 @@ jobs:
4040
run: pytest --cov=src/coding_open_agent_tools --cov-report=xml --cov-report=term-missing
4141

4242
- name: Upload coverage to Codecov
43-
uses: codecov/codecov-action@v3
43+
uses: codecov/codecov-action@v5
4444
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
4545
with:
4646
files: ./coverage.xml

0 commit comments

Comments
 (0)