From 61516b31a78f9c071dbb046bf65fc51fe9648ee9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 09:40:50 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/v2...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/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](https://github.com/docker/metadata-action/compare/v4...v5) Updates `docker/login-action` from 2 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) Updates `actions/upload-artifact` from 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v4) Updates `actions/download-artifact` from 2 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/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](https://github.com/softprops/action-gh-release/compare/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] --- .github/workflows/docker.yml | 8 ++++---- .github/workflows/release.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 2eb15df8..f2e206fa 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -32,9 +32,9 @@ jobs: steps: - name: Checkout Repo ⚡️ - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Up Python 🐍 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.x @@ -54,7 +54,7 @@ jobs: - name: Docker meta 📝 if: always() id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: | name=ghcr.io/unkcpz/aiida-sssp-workflow @@ -66,7 +66,7 @@ jobs: type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/v') }} - name: Login to Container Registry 🔑 if: always() - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ secrets.GHCR_USERNAME }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e809d6d..1a6177ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,10 +16,10 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.10' @@ -34,7 +34,7 @@ jobs: --wheel --outdir dist/ - name: Upload distribution artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: release path: dist/ @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 name: Download distribution artifact with: name: release @@ -60,7 +60,7 @@ jobs: repository_url: https://test.pypi.org/legacy/ skip_existing: true - - uses: softprops/action-gh-release@v0.1.14 + - uses: softprops/action-gh-release@v2.0.8 name: Create release if: startsWith(github.ref, 'refs/tags/') with: