From 11e4d21a179af7af1fa9f77d46b431425646d899 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 19:33:36 +0000 Subject: [PATCH] Update actions/checkout action to v7 --- .github/workflows/docker-build.yml | 4 ++-- .github/workflows/docker-release.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 8cca38e0..d38b96e4 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -24,7 +24,7 @@ jobs: continue-on-error: true steps: - uses: actions/setup-node@v6 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: npx -y prettier --check ./ # Uncomment the line below to include shell script linting # - run: npx -y shellcheck ./.github/scripts/*.sh ./src/scripts/*.sh @@ -57,7 +57,7 @@ jobs: - image: valheim push: ${{ contains(github.event.pull_request.labels.*.name, 'canary') }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 31d8c41c..ab872bce 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -18,7 +18,7 @@ jobs: steps: # Check out the repository - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Generate Docker metadata - name: Docker meta diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8259891..fffdcfb4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" steps: # Check out the repository - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: "${{ secrets.GH_TOKEN }}"