Skip to content

Commit

Permalink
Merge pull request #666 from uxlfoundation/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…github-actions-49d2947b61

Bump the github-actions group across 2 directories with 3 updates
  • Loading branch information
coldav committed Feb 6, 2025
2 parents f7c4f7e + 1b17c4c commit ccdac08
Show file tree
Hide file tree
Showing 7 changed files with 483 additions and 442 deletions.
9 changes: 6 additions & 3 deletions .github/actions/setup_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ inputs:
cross_arch:
description: 'Cross compilation architecture from: x86, arm, aarch64, riscv64. Default: "none" (no cross compile), will auto fetch native arch'
default: "none"
cache_suffix:
description: 'suffix for caches so each job has its own'
default: 'build'

runs:
# We don't want a new docker just a list of steps, so mark as composite
Expand Down Expand Up @@ -92,9 +95,9 @@ runs:

# note the PR testing usage should set 'save' to false, to avoid PR testing creating new caches on a branch
- name: Setup ccache
uses: hendrikmuhs/ccache-action@ed74d11c0b343532753ecead8a951bb09bb34bc9 # v1.2.14
uses: hendrikmuhs/ccache-action@53911442209d5c18de8a31615e0923161e435875 # v1.2.16
with:
max-size: 200M
key: ccache-build
max-size: 400M
key: ccache-${{ inputs.cache_suffix }}
variant: ccache
save: ${{ inputs.save }}
2 changes: 1 addition & 1 deletion .github/workflows/create_publish_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
fi
- name: Create OCK pre-release
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # v2.1.0
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
REGISTRY: ghcr.io/uxlfoundation
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_ock_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
tar -rf ock_demo_components.tar.gz portDNN_build.tar.gz portBLAS_build.tar.gz
- name: Create OCK demo release
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # v2.1.0
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
Expand Down
Loading

0 comments on commit ccdac08

Please sign in to comment.