Skip to content

Commit 61516b3

Browse files
Bump the gha-dependencies group with 7 updates
Bumps the gha-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `2` | `5` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `4` | `5` | | [docker/login-action](https://github.com/docker/login-action) | `2` | `3` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `2` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `2` | `4` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `0.1.14` | `2.0.8` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v5) Updates `docker/metadata-action` from 4 to 5 - [Release notes](https://github.com/docker/metadata-action/releases) - [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md) - [Commits](docker/metadata-action@v4...v5) Updates `docker/login-action` from 2 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2...v3) Updates `actions/upload-artifact` from 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...v4) Updates `actions/download-artifact` from 2 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v2...v4) Updates `softprops/action-gh-release` from 0.1.14 to 2.0.8 - [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@v0.1.14...v2.0.8) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent eea144c commit 61516b3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232

3333
steps:
3434
- name: Checkout Repo ⚡️
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
- name: Set Up Python 🐍
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v5
3838
with:
3939
python-version: 3.x
4040

@@ -54,7 +54,7 @@ jobs:
5454
- name: Docker meta 📝
5555
if: always()
5656
id: meta
57-
uses: docker/metadata-action@v4
57+
uses: docker/metadata-action@v5
5858
with:
5959
images: |
6060
name=ghcr.io/unkcpz/aiida-sssp-workflow
@@ -66,7 +66,7 @@ jobs:
6666
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
6767
- name: Login to Container Registry 🔑
6868
if: always()
69-
uses: docker/login-action@v2
69+
uses: docker/login-action@v3
7070
with:
7171
registry: ghcr.io
7272
username: ${{ secrets.GHCR_USERNAME }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818

19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020

2121
- name: Set up Python 3.10
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.10'
2525

@@ -34,7 +34,7 @@ jobs:
3434
--wheel
3535
--outdir dist/
3636
- name: Upload distribution artifact
37-
uses: actions/upload-artifact@v2
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: release
4040
path: dist/
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646

4747
steps:
48-
- uses: actions/download-artifact@v2
48+
- uses: actions/download-artifact@v4
4949
name: Download distribution artifact
5050
with:
5151
name: release
@@ -60,7 +60,7 @@ jobs:
6060
repository_url: https://test.pypi.org/legacy/
6161
skip_existing: true
6262

63-
- uses: softprops/action-gh-release@v0.1.14
63+
- uses: softprops/action-gh-release@v2.0.8
6464
name: Create release
6565
if: startsWith(github.ref, 'refs/tags/')
6666
with:

0 commit comments

Comments
 (0)