From 4a84ac2fd21265bbffbdb372484644bf07f39660 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:51:14 -0700 Subject: [PATCH] Bump the updates group with 3 updates (#3573) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the updates group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6
Release notes

Sourced from actions/checkout's releases.

v6.0.0

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v5.0.0...v6.0.0

v6-beta

What's Changed

Updated persist-credentials to store the credentials under $RUNNER_TEMP instead of directly in the local git config.

This requires a minimum Actions Runner version of v2.329.0 to access the persisted credentials for Docker container action scenarios.

v5.0.1

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v5...v5.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

... (truncated)

Commits

Updates `actions/setup-node` from 5 to 6
Release notes

Sourced from actions/setup-node's releases.

v6.0.0

What's Changed

Breaking Changes

Dependency Upgrades

Full Changelog: https://github.com/actions/setup-node/compare/v5...v6.0.0

Commits

Updates `actions/upload-artifact` from 6 to 7
Release notes

Sourced from actions/upload-artifact's releases.

v7.0.0

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v6...v7.0.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 18 +++++++++--------- .github/workflows/deploy.yml | 2 +- .github/workflows/release.yml | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7aefdca8..3542af116 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,16 +17,16 @@ jobs: timeout-minutes: 30 steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: false - name: Setup node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 24 - run: npm ci - run: npm run build-prod - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: path: out/index.html retention-days: 1 @@ -36,11 +36,11 @@ jobs: timeout-minutes: 30 steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: false - name: Setup node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 24 - run: npm ci @@ -51,8 +51,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: "24" cache: "npm" @@ -64,8 +64,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: "24" cache: "npm" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 762f7ef2f..42b5cf28d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -53,7 +53,7 @@ jobs: DOMAIN: ${{ inputs.target_domain || 'openfront.dev' }} SUBDOMAIN: ${{ github.event_name == 'push' && github.ref_name || inputs.target_subdomain || 'main' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 📝 Update job summary env: FQDN: ${{ env.SUBDOMAIN && format('{0}.{1}', env.SUBDOMAIN, env.DOMAIN) || env.DOMAIN || 'openfront.dev' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 745d3018e..c843b1aaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 🔗 Log in to Docker Hub uses: docker/login-action@v4 with: @@ -51,7 +51,7 @@ jobs: timeout-minutes: 30 needs: [build] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 🔑 Create SSH private key env: SERVER_HOST_STAGING: ${{ secrets.SERVER_HOST_STAGING }} @@ -101,7 +101,7 @@ jobs: timeout-minutes: 30 environment: prod-beta steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 🔑 Create SSH private key env: SERVER_HOST_FALK2: ${{ secrets.SERVER_HOST_FALK2 }} @@ -151,7 +151,7 @@ jobs: timeout-minutes: 30 environment: prod-blue steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 🔑 Create SSH private key env: SERVER_HOST_FALK2: ${{ secrets.SERVER_HOST_FALK2 }} @@ -201,7 +201,7 @@ jobs: timeout-minutes: 30 environment: prod-green steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 🔑 Create SSH private key env: SERVER_HOST_FALK2: ${{ secrets.SERVER_HOST_FALK2 }}