mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](692973e3d9...d632683dd7)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: "Test fixture cache: publish"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# run nightly at 4AM UTC
|
|
- cron: "0 4 * * *"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
Publish:
|
|
name: "Publish test fixture image cache"
|
|
# we use this runner to get enough storage space for docker images and fixture cache
|
|
runs-on: ubuntu-22.04-4core-16gb
|
|
permissions:
|
|
packages: write
|
|
steps:
|
|
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0
|
|
|
|
- name: Bootstrap environment
|
|
uses: ./.github/actions/bootstrap
|
|
with:
|
|
# we want to rebuild the cache with no previous state
|
|
download-test-fixture-cache: false
|
|
|
|
- name: Run all tests
|
|
run: make test
|
|
env:
|
|
# we want to rebuild the cache with no previous state
|
|
DOWNLOAD_TEST_FIXTURE_CACHE: "false"
|
|
|
|
- name: Login to GitHub Container Registry (ORAS)
|
|
run: echo "${{ secrets.GITHUB_TOKEN }}" | .tool/oras login ghcr.io -u ${{ github.actor }} --password-stdin
|
|
|
|
- name: Publish test fixture cache
|
|
run: make upload-test-fixture-cache
|