From 5a9279adec162aa84ee4dcffc6ec9717a5a135d0 Mon Sep 17 00:00:00 2001 From: simatic-ax-bot Date: Tue, 4 Aug 2026 06:26:14 +0000 Subject: [PATCH] chore(deps): update third-party actions --- .github/workflows/package-development-workflow.yml | 4 ++-- .github/workflows/package-release-workflow.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/package-development-workflow.yml b/.github/workflows/package-development-workflow.yml index 22ed94d..484766e 100644 --- a/.github/workflows/package-development-workflow.yml +++ b/.github/workflows/package-development-workflow.yml @@ -36,7 +36,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: # either check out a provided reference, or use the reference that triggered this workflow, e.g. a push, PR or a release ref: ${{ inputs.ref != '' && inputs.ref || github.ref }} @@ -77,7 +77,7 @@ jobs: - name: Upload build artifacts if: ${{ github.event_name == 'workflow_call' || github.event_name == 'release'}} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: build-artifacts path: | diff --git a/.github/workflows/package-release-workflow.yml b/.github/workflows/package-release-workflow.yml index 8bd04a1..69e74cd 100644 --- a/.github/workflows/package-release-workflow.yml +++ b/.github/workflows/package-release-workflow.yml @@ -34,7 +34,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: ${{ github.event.release.target_commitish }} fetch-depth: 0 @@ -43,7 +43,7 @@ jobs: run: mkdir -p bin - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: build-artifacts path: bin