From e8dfcf2c494be6ef0133aae99be453ac5a926bf4 Mon Sep 17 00:00:00 2001 From: nicomiguelino Date: Tue, 8 Sep 2026 11:05:57 -0700 Subject: [PATCH] chore: pin edge-apps-actions to v26.9.0 tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switching from a pinned commit hash to the v26.9.0 version tag is intentional, for easier reference. v26.9.0 points to the exact same commit that was previously pinned by hash, so this is not a reduction in supply-chain safety — it is a readability change, not a move to a floating/unpinned reference. --- .github/workflows/initialize-edge-app.yml | 2 +- .github/workflows/update-edge-app.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/initialize-edge-app.yml b/.github/workflows/initialize-edge-app.yml index 48932f3..5764219 100644 --- a/.github/workflows/initialize-edge-app.yml +++ b/.github/workflows/initialize-edge-app.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v7 with: ref: ${{ inputs.environment == 'production' && 'main' || github.ref }} - - uses: Screenly/edge-apps-actions/initialize@f4ccd2bd50db5fb0a5147d287ac03cafe552d29b + - uses: Screenly/edge-apps-actions/initialize@v26.9.0 with: screenly_api_token: ${{ secrets.SCREENLY_API_TOKEN }} edge_app_name: ${{ inputs.edge_app_name }} diff --git a/.github/workflows/update-edge-app.yml b/.github/workflows/update-edge-app.yml index 3897267..fe5ddb0 100644 --- a/.github/workflows/update-edge-app.yml +++ b/.github/workflows/update-edge-app.yml @@ -18,7 +18,7 @@ jobs: environment: stage steps: - uses: actions/checkout@v7 - - uses: Screenly/edge-apps-actions/update@f4ccd2bd50db5fb0a5147d287ac03cafe552d29b + - uses: Screenly/edge-apps-actions/update@v26.9.0 with: screenly_api_token: ${{ secrets.SCREENLY_API_TOKEN }} environment: stage @@ -32,7 +32,7 @@ jobs: environment: production steps: - uses: actions/checkout@v7 - - uses: Screenly/edge-apps-actions/update@f4ccd2bd50db5fb0a5147d287ac03cafe552d29b + - uses: Screenly/edge-apps-actions/update@v26.9.0 with: screenly_api_token: ${{ secrets.SCREENLY_API_TOKEN }} environment: production