mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-24 12:30:39 +00:00
b2c347d021
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/df4cb1c069e1874edd31b4311f1884172cec0e10...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
(cherry picked from commit 072926c2f6)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
701 B
YAML
32 lines
701 B
YAML
name: Push comps updates
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- frawhide
|
|
- f44
|
|
- f43
|
|
- f42
|
|
- el10
|
|
paths:
|
|
- comps.xml
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-comps:
|
|
runs-on: ubuntu-24.04-arm
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:frawhide
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
- name: Push to subatomic
|
|
run: |
|
|
branch=${{ github.ref_name }}
|
|
ver=${branch/f/}
|
|
subatomic-cli upload-comps \
|
|
--server https://subatomic.fyralabs.com \
|
|
--token ${{ secrets.SUBATOMIC_TOKEN }} \
|
|
"terra${ver}" comps.xml
|