Skip to content

Commit 6af45aa

Browse files
committed
Merge branch 'main' into add-explanation
2 parents 5c97e04 + 244aac0 commit 6af45aa

4 files changed

Lines changed: 17 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,16 @@ jobs:
101101
- name: Checkout repository
102102
uses: actions/checkout@v6
103103
- name: Set up Docker Buildx
104-
uses: docker/setup-buildx-action@v3
104+
uses: docker/setup-buildx-action@v4
105105
- name: Log in to GHCR
106-
uses: docker/login-action@v3
106+
uses: docker/login-action@v4
107107
with:
108108
registry: ghcr.io
109109
username: ${{ github.actor }}
110110
password: ${{ secrets.GITHUB_TOKEN }}
111111
- name: Build and push by digest
112112
id: build
113-
uses: docker/build-push-action@v6
113+
uses: docker/build-push-action@v7
114114
with:
115115
platforms: ${{ matrix.platform }}
116116
outputs: type=image,name=ghcr.io/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true
@@ -120,7 +120,7 @@ jobs:
120120
digest="${{ steps.build.outputs.digest }}"
121121
touch "/tmp/digests/${digest#sha256:}"
122122
- name: Upload digest
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v7
124124
with:
125125
name: digest-${{ matrix.name }}
126126
path: /tmp/digests/*
@@ -141,24 +141,24 @@ jobs:
141141
packages: write
142142
steps:
143143
- name: Download digests
144-
uses: actions/download-artifact@v4
144+
uses: actions/download-artifact@v8
145145
with:
146146
path: /tmp/digests
147147
pattern: digest-*
148148
merge-multiple: true
149149
- name: Docker metadata
150150
id: meta
151-
uses: docker/metadata-action@v5
151+
uses: docker/metadata-action@v6
152152
with:
153153
images: ghcr.io/${{ github.repository }}
154154
tags: |
155155
type=edge,branch=main
156156
type=ref,event=pr
157157
type=raw,value=${{ needs.release-plz-release.outputs.version }},enable=${{ needs.release-plz-release.outputs.releases_created == 'true' }}
158158
- name: Set up Docker Buildx
159-
uses: docker/setup-buildx-action@v3
159+
uses: docker/setup-buildx-action@v4
160160
- name: Log in to GHCR
161-
uses: docker/login-action@v3
161+
uses: docker/login-action@v4
162162
with:
163163
registry: ghcr.io
164164
username: ${{ github.actor }}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.18](https://github.com/encryption4all/cryptify/compare/v0.1.17...v0.1.18) - 2026-03-30
11+
12+
### Other
13+
14+
- Use native runners
15+
- Try 24375738 to make the pipeline work
16+
1017
## [0.1.17](https://github.com/encryption4all/cryptify/compare/v0.1.16...v0.1.17) - 2026-03-27
1118

1219
### Other

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cryptify"
3-
version = "0.1.17"
3+
version = "0.1.18"
44
authors = ["David Venhoek <david@tweedegolf.com>"]
55
edition = "2021"
66
repository = "https://github.com/encryption4all/cryptify"

0 commit comments

Comments
 (0)