chore(deps): update actions/cache action to v4.2.0 #164
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
# At 00:00 on Monday | |
- cron: '0 0 * * 1' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
# renovate: datasource=github-releases depName=jsonnet-bundler/jsonnet-bundler | |
JB_VERSION: v0.6.0 | |
# renovate: datasource=github-releases depName=google/go-jsonnet | |
JSONNET_VERSION: v0.20.0 | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
defaults: | |
run: | |
working-directory: examples | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Jsonnet | |
run: | | |
mkdir -p "${HOME}/.local/bin" | |
echo "${HOME}/.local/bin" >>"${GITHUB_PATH}" | |
gh --repo=google/go-jsonnet release download "${JSONNET_VERSION}" \ | |
--output=- --pattern='go-jsonnet_*_Linux_x86_64.tar.gz' \ | |
| tar -zxvf - -C "${HOME}/.local/bin" jsonnet jsonnet-lint jsonnetfmt | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Jsonnet Bundler | |
run: | | |
gh --repo=jsonnet-bundler/jsonnet-bundler release download "${JB_VERSION}" \ | |
--output="${HOME}/.local/bin/jb" --pattern=jb-linux-amd64 | |
chmod +x "${HOME}/.local/bin/jb" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint examples | |
run: make lint | |
- name: Build examples | |
run: make |