From 525f52b8cab933df1a87fae2f5dd9d6adce051df Mon Sep 17 00:00:00 2001 From: Jesper Noordsij Date: Wed, 8 Oct 2025 15:35:02 +0200 Subject: [PATCH 1/4] Update GitHub actions/checkout to v5 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/snapcraft-candidate.yml | 2 +- .github/workflows/typos.yml | 3 +-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f456638f..425337636 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Go uses: actions/setup-go@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fdbad9bd4..824c4777a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 @@ -32,7 +32,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # https://github.com/marketplace/actions/goreleaser-action#usage # note the fetch-depth: 0 input in Checkout step. It is required for @@ -65,7 +65,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # fetch-depth: 0 fetches all history for all branches and tags fetch-depth: 0 diff --git a/.github/workflows/snapcraft-candidate.yml b/.github/workflows/snapcraft-candidate.yml index be90545ac..c5ac32668 100644 --- a/.github/workflows/snapcraft-candidate.yml +++ b/.github/workflows/snapcraft-candidate.yml @@ -11,7 +11,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v5 with: # fetch-depth: 0 fetches all history for all branches and tags fetch-depth: 0 diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index bcf7fd2ee..e35aa8ee3 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -14,8 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Actions Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check spelling uses: crate-ci/typos@v1.23.2 - From b7391a65228a06240d827313c42460fd10c2cc56 Mon Sep 17 00:00:00 2001 From: Jesper Noordsij Date: Wed, 8 Oct 2025 15:52:40 +0200 Subject: [PATCH 2/4] Update GitHub actions/setup-go to v6 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 425337636..d32af41c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v5 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version: ${{ matrix.go-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 824c4777a..ab55d5d84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version: 1.24.x @@ -46,7 +46,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version: 1.24.x From ebaf01e0f6c8fb7ac996106e149e5666b66635d7 Mon Sep 17 00:00:00 2001 From: Jesper Noordsij Date: Wed, 8 Oct 2025 15:54:37 +0200 Subject: [PATCH 3/4] Use name and fixed major action version for Snap publishing --- .github/workflows/release.yml | 3 ++- .github/workflows/snapcraft-candidate.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab55d5d84..380d9b83e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -74,7 +74,8 @@ jobs: uses: snapcore/action-build@v1 id: build - - uses: snapcore/action-publish@master + - name: Publish snap + uses: snapcore/action-publish@v1 env: SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} with: diff --git a/.github/workflows/snapcraft-candidate.yml b/.github/workflows/snapcraft-candidate.yml index c5ac32668..e1ee58b7c 100644 --- a/.github/workflows/snapcraft-candidate.yml +++ b/.github/workflows/snapcraft-candidate.yml @@ -20,7 +20,8 @@ jobs: uses: snapcore/action-build@v1 id: build - - uses: snapcore/action-publish@master + - name: Publish snap + uses: snapcore/action-publish@v1 env: SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} with: From 5600913752169806f1c21d5e0bd66de9ed615bc9 Mon Sep 17 00:00:00 2001 From: Jesper Noordsij Date: Wed, 8 Oct 2025 15:55:45 +0200 Subject: [PATCH 4/4] Update GitHub crate-ci/typos to v1.38.1 --- .github/workflows/typos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index e35aa8ee3..652411004 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -17,4 +17,4 @@ jobs: uses: actions/checkout@v5 - name: Check spelling - uses: crate-ci/typos@v1.23.2 + uses: crate-ci/typos@v1.38.1