fix(deps): update dependency @actions/http-client to v2.2.0 #787
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test - All inputs override | |
on: | |
push: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
# Exclude in-repo PRs from running this job | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Run PackSquash | |
uses: ./ # Uses an action in the root directory | |
with: | |
packsquash_version: latest | |
system_id: c5eb0603-093c-41fd-9c21-88c34a429e3b # <- (Automatically generated) | |
artifact_name: Test Artifact Name # <- Optimized pack | |
show_emoji_in_packsquash_logs: false # <- true | |
enable_color_in_packsquash_logs: false # <- true | |
token: ${{ secrets.GITHUB_TOKEN }} # <- ${{ github.token }} | |
action_cache_revision: 3 # <- (empty) | |
options: | | |
pack_directory = 'test/empty_resource_pack' |