Skip to content

Commit

Permalink
Fix action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Buried-In-Code committed Nov 25, 2023
1 parent 3972b37 commit 1ac6f2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/publishing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup qemu
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v3.0.0
- name: Setup docker buildx
uses: docker/setup-buildx-action@v3
id: buildx
uses: docker/setup-buildx-action@v3.0.0
- name: Login to GHCR
uses: docker/login-action@v3
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v5.0.0
id: meta
with:
images: |
Expand All @@ -35,7 +34,7 @@ jobs:
tags: |
type=pep440,pattern={{version}}
- name: Build and Push
uses: docker/build-push-action@v5,
uses: docker/build-push-action@v5.1.0
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion freyr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from freyr.console import CONSOLE

__version__ = "0.3.4"
__version__ = "0.3.5"


def get_cache_root() -> Path:
Expand Down

0 comments on commit 1ac6f2e

Please sign in to comment.