From 66340e02a87fa717f1f38303cd8bf898888844bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 20:42:28 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d7ecf64..74f4ec0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Create test package uses: secondlife/action-nfpm@v2 - uses: ./ From 69ccad6fe52e5e6d374232d6e05deeded6d51100 Mon Sep 17 00:00:00 2001 From: Natty Linden Date: Thu, 2 Jul 2026 17:07:45 +0000 Subject: [PATCH 2/2] Update use of actions/checkout in the readme example By default secondlife/action-nfpm will check out the project, so an actions/checkout step is not necessary here. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6696ca..541d807 100644 --- a/README.md +++ b/README.md @@ -25,15 +25,16 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - name: Build package uses: secondlife/action-nfpm@v2 + # Scan packages and start a debserver listening on 0.0.0.0:12321 - uses: secondlife/action-debserver@v1 id: debserver with: path: dist - - uses: docker/build-push-action@v6 + + - uses: docker/build-push-action@v7 with: tags: user/app:latest push: true