Skip to content

Commit

Permalink
Bump the actions group in /.github/workflows with 5 updates (#103)
Browse files Browse the repository at this point in the history
Bumps the actions group in /.github/workflows with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/stale](https://github.com/actions/stale) | `3` | `9` |
| [actions/checkout](https://github.com/actions/checkout) | `3` | `4` |
| [Azure/k8s-lint](https://github.com/azure/k8s-lint) | `1` | `3` |
| [actionsx/prettier](https://github.com/actionsx/prettier) | `2` | `3` |
| [Azure/action-release-workflows](https://github.com/azure/action-release-workflows) | `1.0.1` | `1.0.2` |


Updates `actions/stale` from 3 to 9
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v9)

Updates `actions/checkout` from 3 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

Updates `Azure/k8s-lint` from 1 to 3
- [Release notes](https://github.com/azure/k8s-lint/releases)
- [Changelog](https://github.com/Azure/k8s-lint/blob/main/CHANGELOG.md)
- [Commits](Azure/k8s-lint@v1...v3)

Updates `actionsx/prettier` from 2 to 3
- [Release notes](https://github.com/actionsx/prettier/releases)
- [Commits](actionsx/prettier@v2...v3)

Updates `Azure/action-release-workflows` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/azure/action-release-workflows/releases)
- [Changelog](https://github.com/Azure/action-release-workflows/blob/main/CHANGELOG.md)
- [Commits](Azure/action-release-workflows@6f9de5d...1b199cc)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: Azure/k8s-lint
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actionsx/prettier
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: Azure/action-release-workflows
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 11, 2024
1 parent f113263 commit 5125322
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/defaultLabels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
label-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v9
name: Setting issue as idle
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -19,7 +19,7 @@ jobs:
operations-per-run: 100
exempt-issue-labels: 'backlog'

- uses: actions/stale@v3
- uses: actions/stale@v9
name: Setting PR as idle
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout branch

- name: Install npm packages
Expand All @@ -37,7 +37,7 @@ jobs:
id: helm-bake

- name: Validate created manifest ${{ matrix.os }}
uses: Azure/k8s-lint@v1
uses: Azure/k8s-lint@v3
with:
manifests: ${{ steps.helm-bake.outputs.manifestsBundle }}

Expand All @@ -50,7 +50,7 @@ jobs:
id: kompose-bake

- name: validate created manifest ${{ matrix.os }}
uses: Azure/k8s-lint@v1
uses: Azure/k8s-lint@v3
with:
manifests: ${{ steps.kompose-bake.outputs.manifestsBundle }}

Expand All @@ -63,6 +63,6 @@ jobs:
id: kustomize-bake

- name: Validate created manifest ${{ matrix.os }}
uses: Azure/k8s-lint@v1
uses: Azure/k8s-lint@v3
with:
manifests: ${{ steps.kustomize-bake.outputs.manifestsBundle }}
4 changes: 2 additions & 2 deletions .github/workflows/prettify-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Enforce Prettier
uses: actionsx/prettier@v2
uses: actionsx/prettier@v3
with:
args: --check .
2 changes: 1 addition & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
permissions:
actions: read
contents: write
uses: Azure/action-release-workflows/.github/workflows/release_js_project.yaml@6f9de5deea0d6655168c8dd26e8849698f9a3809
uses: Azure/action-release-workflows/.github/workflows/release_js_project.yaml@1b199cc979febcb43526d33853f2d71183091cdb
with:
changelogPath: ./CHANGELOG.md
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build: # make sure build/ci works properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Running L0 tests.
run: |
npm install
Expand Down

0 comments on commit 5125322

Please sign in to comment.