Skip to content

Commit

Permalink
Bump the actions group across 1 directory with 5 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4.2.0` | `4.2.2` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.2.0` | `5.3.0` |
| [actions/cache](https://github.com/actions/cache) | `4.1.0` | `4.1.2` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4.0.4` | `4.1.0` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.0` | `4.4.3` |



Updates `actions/checkout` from 4.2.0 to 4.2.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@d632683...11bd719)

Updates `actions/setup-python` from 5.2.0 to 5.3.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@f677139...0b93645)

Updates `actions/cache` from 4.1.0 to 4.1.2
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@2cdf405...6849a64)

Updates `actions/setup-node` from 4.0.4 to 4.1.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@0a44ba7...39370e3)

Updates `actions/upload-artifact` from 4.4.0 to 4.4.3
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@5076954...b4b15b8)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 4, 2024
1 parent 6980722 commit d9dba92
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # actions/[email protected].0
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # actions/setup-python@v5.2.0
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # actions/[email protected].2
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # actions/setup-python@v5.3.0
with:
python-version: "3.9"
cache: pipenv
cache-dependency-path: backend/Pipfile.lock
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # hashicorp/[email protected]
- uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # actions/[email protected].0
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # actions/[email protected].2
with:
# Tool versions are defined in the Makefile.
key: backend-unit-test-tools-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('backend/Makefile') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_orchestrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # actions/[email protected].0
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # actions/[email protected].2
- name: setup python environment
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # actions/setup-python@v5.2.0
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # actions/setup-python@v5.3.0
with:
python-version: "3.9"
architecture: "x64"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- name: Checkout the code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # actions/[email protected].0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # actions/[email protected].2

- name: Setup node from node version file
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # actions/setup-node@v4.0.4
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # actions/setup-node@v4.1.0
with:
node-version-file: "${{ env.UI_PATH }}/.nvmrc"

Expand All @@ -39,7 +39,7 @@ jobs:
run: make -C $UI_PATH precommit

- name: Save test results
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # actions/[email protected].0
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # actions/[email protected].3
with:
name: ui-test
path: ui/test-report/index.html

0 comments on commit d9dba92

Please sign in to comment.