Skip to content

Commit

Permalink
Merge pull request #560 from grische/unpin-official-actions
Browse files Browse the repository at this point in the history
github: unpin official actions
  • Loading branch information
grische authored Jan 17, 2025
2 parents 63b3302 + 8d68a61 commit ff7f286
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
steps:
- name: Clone Firmware
uses: actions/checkout@v4 # v4

- name: Get Github App Token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
uses: actions/create-github-app-token@v1 # v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4 # v4

- name: Get Github App Token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
uses: actions/create-github-app-token@v1 # v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Configure Git User and E-Mail
run: git config --global user.name "${{ env.COMMIT_NAME }}" && git config --global user.email "${{ env.COMMIT_EMAIL }}"
env:
COMMIT_NAME: ${{ steps.app-token.outputs.app-slug }}[bot]
COMMIT_NAME: ${{ steps.app-token.outputs.app-slug }}[bot]
COMMIT_EMAIL: ${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com

- name: Get update branch name
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
make BROKEN=1 GLUON_TARGETS=${{ matrix.target }} BUILD_NUMBER=${{ github.event.pull_request.number && format('pr{0}', github.event.pull_request.number) || github.run_id && format('run{0}', github.run_id) }} V=s
echo "status=success" >> $GITHUB_OUTPUT
- name: Upload firmware ${{ matrix.target }}
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@v4 # v4
if: steps.compile.outputs.status == 'success'
with:
name: ${{ matrix.target }}_output
Expand All @@ -75,7 +75,7 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download all artifacts
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
uses: actions/download-artifact@v4 # v4
- name: Display structure of artifacts
run: ls -R
- name: Create tar.gz files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v4 # v4

- name: Get Github App Token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
uses: actions/create-github-app-token@v1 # v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand Down

0 comments on commit ff7f286

Please sign in to comment.