dependabot[bot] 25a8fcd930 Bump eslint from 8.52.0 to 8.57.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.52.0 to 8.57.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.52.0...v8.57.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-26 10:21:24 +00:00
2020-09-25 12:55:49 +08:00
2020-03-31 02:33:37 +08:00
2020-03-31 02:33:37 +08:00
2019-09-05 02:03:51 +08:00
2024-02-26 10:21:24 +00:00
2022-10-17 02:28:13 +08:00
2020-03-31 02:33:37 +08:00

build-test

Description

Install any kustomize version as a step in your workflow

Options

Every argument is optional.

Input Description
github-token PAT (Personal Access Token) for authorizing the repository.
Defaults to ${{ github.token }}
kustomize-version Semver of kustomize to use. Examples: 10.x, 10.15.1, >=10.15.0
Defaults to *
fail-fast When github rate limits us, fail immediately or retry after the timeout that github wishes from us?
Note: When this is set to false, a github workflow might accrue a long (and possibly expensive) runtime.
Defaults to true

Usage

on:
  push:
    branches:
      - master

jobs:
  create-deployment-branch:
    runs-on: ubuntu-latest
    needs:
      - publish-image
    steps:
      - uses: imranismail/setup-kustomize@v2
      - run: |
          kustomize edit set image app:${GITHUB_SHA}
          git add .
          git commit -m "Set `app` image tag to `${GITHUB_SHA}`"
          git push
Languages
TypeScript 97.7%
JavaScript 2.3%