Skip to content

Commit 117c21a

Browse files
chore(deps): bump the all-actions group across 1 directory with 6 updates
Bumps the all-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [toshimaru/auto-author-assign](https://github.com/toshimaru/auto-author-assign) | `2.1.0` | `2.1.1` | | [actions/checkout](https://github.com/actions/checkout) | `3` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | Updates `toshimaru/auto-author-assign` from 2.1.0 to 2.1.1 - [Release notes](https://github.com/toshimaru/auto-author-assign/releases) - [Changelog](https://github.com/toshimaru/auto-author-assign/blob/main/CHANGELOG.md) - [Commits](toshimaru/auto-author-assign@v2.1.0...v2.1.1) Updates `actions/checkout` from 3 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) Updates `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@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 `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: toshimaru/auto-author-assign dependency-version: 2.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0339e9a commit 117c21a

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/auto-author-assign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
timeout-minutes: 30
1414
if: ${{ !github.event.pull_request.assignee }}
1515
steps:
16-
- uses: toshimaru/[email protected].0
16+
- uses: toshimaru/[email protected].1

.github/workflows/auto-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919

20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
repository: ${{ github.event.pull_request.head.repo.full_name }}
2323
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/build-wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
python-version: '3.12'
4141

4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444

4545
- name: Set up Python
46-
uses: actions/setup-python@v5
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949

@@ -62,7 +62,7 @@ jobs:
6262
shell: bash
6363

6464
- name: Upload to GitHub Actions
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
with:
6767
name: dist-${{ matrix.os }}-py${{ matrix.python-version }}
6868
path: dist/*
@@ -74,13 +74,13 @@ jobs:
7474
permissions:
7575
contents: write
7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
with:
7979
fetch-depth: 0
8080
ref: release
8181

8282
- name: Download all artifacts
83-
uses: actions/download-artifact@v4
83+
uses: actions/download-artifact@v6
8484
with:
8585
pattern: dist-*
8686
path: dist

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: arc-runners-small
1818
timeout-minutes: 30
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
repository: ${{ github.event.pull_request.head.repo.full_name }}
2323
ref: ${{ github.event.pull_request.head.ref }}
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: arc-runners-small
4545
timeout-minutes: 30
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
- uses: ./.github/workflows/actions/prepare
4949
with:
5050
python-version: "3.12"
@@ -90,7 +90,7 @@ jobs:
9090
- os: macos-14
9191
python-version: "3.13"
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v5
9494
- uses: ./.github/workflows/actions/prepare
9595
with:
9696
python-version: ${{ matrix.python-version }}

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
if: false
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v5
1111
- name: Set up Python 3.7
12-
uses: actions/setup-python@v4
12+
uses: actions/setup-python@v6
1313
with:
1414
python-version: "3.7"
1515
- name: Python version
@@ -33,9 +33,9 @@ jobs:
3333
os: ["ubuntu-20.04", "windows-latest", "macos-latest"]
3434
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc.2" ]
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v5
3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Python version
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
echo "::set-output name=dir::$(pip cache dir)"
4747
- name: pip cache
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ${{ steps.pip-cache.outputs.dir }}
5151
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}

0 commit comments

Comments
 (0)