Skip to content

Commit 0ab9548

Browse files
Bump the actions group across 1 directory with 10 updates
Bumps the actions group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/checkout](https://github.com/actions/checkout) | `2` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) | `3.9.3` | `4.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.0.4` | `2.4.1` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | | [docker/login-action](https://github.com/docker/login-action) | `1` | `3` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `1` | `3` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `4` | `6` | Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/checkout` from 2 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `peaceiris/actions-gh-pages` from 3.9.3 to 4.0.0 - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](peaceiris/actions-gh-pages@373f7f2...4f9cc66) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `softprops/action-gh-release` from 2.0.4 to 2.4.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@9d7c94c...6da8fa9) Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v5) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) Updates `docker/setup-buildx-action` from 1 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v1...v3) Updates `docker/build-push-action` from 4 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v4...v6) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: peaceiris/actions-gh-pages dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: 2.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ce0db0b commit 0ab9548

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

.github/workflows/_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
outputs:
1212
branch-pr: ${{ steps.script.outputs.result }}
1313
steps:
14-
- uses: actions/github-script@v7
14+
- uses: actions/github-script@v8
1515
id: script
1616
if: github.event_name == 'push'
1717
with:

.github/workflows/_dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v6
1111
with:
1212
# Need this to get version number from last tag
1313
fetch-depth: 0
@@ -18,7 +18,7 @@ jobs:
1818
pipx run build ./python
1919
2020
- name: Upload sdist and wheel as artifacts
21-
uses: actions/upload-artifact@v4
21+
uses: actions/upload-artifact@v5
2222
with:
2323
name: dist
2424
path: python/dist

.github/workflows/_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run: sleep 60
1212

1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
# Need this to get version number from last tag
1717
fetch-depth: 0
@@ -31,7 +31,7 @@ jobs:
3131
run: rm build/html/.doctrees/environment.pickle
3232

3333
- name: Upload built docs artifact
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: docs
3737
path: build
@@ -49,7 +49,7 @@ jobs:
4949
if: github.ref_type == 'tag' || github.ref_name == 'main'
5050
# We pin to the SHA, not the tag, for security reasons.
5151
# https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
52-
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3.9.3
52+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
5353
with:
5454
github_token: ${{ secrets.GITHUB_TOKEN }}
5555
publish_dir: .github/pages

.github/workflows/_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
steps:
99
- name: Download artifacts
10-
uses: actions/download-artifact@v4
10+
uses: actions/download-artifact@v6
1111
with:
1212
merge-multiple: true
1313

@@ -23,7 +23,7 @@ jobs:
2323
- name: Create GitHub Release
2424
# We pin to the SHA, not the tag, for security reasons.
2525
# https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
26-
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 # v2.0.4
26+
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
2727
with:
2828
prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc') }}
2929
files: "*"

.github/workflows/_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
# Need this to get version number from last tag
2929
fetch-depth: 0
@@ -41,7 +41,7 @@ jobs:
4141

4242
- if: inputs.python-version == 'dev'
4343
name: Upload dev-requirements.txt
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v5
4545
with:
4646
name: dev-requirements
4747
path: /tmp/dev-requirements.txt
@@ -57,7 +57,7 @@ jobs:
5757
run: cd python && tox -e tests
5858

5959
- name: Upload coverage to Codecov
60-
uses: codecov/codecov-action@v4
60+
uses: codecov/codecov-action@v5
6161
with:
6262
name: ${{ inputs.python-version }}/${{ inputs.runs-on }}
6363
files: cov.xml

.github/workflows/_tox.yml

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

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Install python packages
1919
uses: ./.github/actions/install_requirements

.github/workflows/container.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0 # All history
1919

@@ -27,18 +27,18 @@ jobs:
2727
2828
- name: Log in to GitHub Docker Registry
2929
if: github.event_name != 'pull_request'
30-
uses: docker/login-action@v1
30+
uses: docker/login-action@v3
3131
with:
3232
registry: ghcr.io
3333
username: ${{ github.actor }}
3434
password: ${{ secrets.GITHUB_TOKEN }}
3535

3636
- name: Set up Docker Buildx
3737
id: buildx
38-
uses: docker/setup-buildx-action@v1
38+
uses: docker/setup-buildx-action@v3
3939

4040
- name: Build image
41-
uses: docker/build-push-action@v4
41+
uses: docker/build-push-action@v6
4242
with:
4343
context: .
4444
file: Dockerfile
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Push developer image
6060
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
61-
uses: docker/build-push-action@v4
61+
uses: docker/build-push-action@v6
6262
with:
6363
context: .
6464
file: Dockerfile
@@ -80,7 +80,7 @@ jobs:
8080
8181
- name: Push runtime image
8282
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
83-
uses: docker/build-push-action@v4
83+
uses: docker/build-push-action@v6
8484
with:
8585
context: .
8686
file: Dockerfile

.github/workflows/cpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
container: ghcr.io/odin-detector/odin-data-build:latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v6
1111
with:
1212
fetch-depth: 0
1313
- name: Build eiger-detector

0 commit comments

Comments
 (0)