diff --git a/.forgejo/workflows/test_workflow.yml b/.forgejo/workflows/test_workflow.yml index 373461e..86014d8 100644 --- a/.forgejo/workflows/test_workflow.yml +++ b/.forgejo/workflows/test_workflow.yml @@ -6,7 +6,7 @@ jobs: container: image: git.hswro.org/fleg/actions-experiments:latest steps: - - uses: https://codeberg.org/fleg/light-actions/checkout@test6 + - uses: https://codeberg.org/fleg/light-actions/checkout@test7 - run: cat README.md upload-artifact: runs-on: docker @@ -14,7 +14,7 @@ jobs: image: git.hswro.org/fleg/actions-experiments:latest steps: - run: echo "test passed" > test.txt - - uses: https://codeberg.org/fleg/light-actions/upload-artifact@test6 + - uses: https://codeberg.org/fleg/light-actions/upload-artifact@test7 with: path: test.txt artifact-name: test-artifact diff --git a/upload-artifact/action.yml b/upload-artifact/action.yml index 6ce489a..2b8dc3c 100644 --- a/upload-artifact/action.yml +++ b/upload-artifact/action.yml @@ -13,13 +13,12 @@ runs: - run: | set -euxo pipefail ARTIFACT_BASE="${ACTIONS_RUNTIME_URL}_apis/pipelines/workflows/${GITHUB_RUN_ID}/artifacts?api-version=6.0-preview" - AUTH_HEADER="Authorization: Bearer ${GITHUB_TOKEN}" RESOURCE_URL="$( curl \ -XPOST \ --silent \ --fail-with-body \ - --header ${AUTH_HEADER}\ + --header "Authorization: Bearer ${{ github.token }}" \ --header 'Accept: application/json;api-version=6.0-preview' \ --header 'Content-Type: application/json' \ --data '{\"type\": \"actions_storage\", \"name\": \"${{ inputs.artifact-name }}\"}' \