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