Skip to content

Commit 0827ca4

Browse files
build(deps): bump the action-packages group across 1 directory with 2 updates
Bumps the action-packages group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [mikefarah/yq](https://github.com/mikefarah/yq). Updates `actions/checkout` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6.0.2...v6.0.3) Updates `mikefarah/yq` from 4.52.5 to 4.53.2 - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](mikefarah/yq@v4.52.5...v4.53.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: action-packages - dependency-name: mikefarah/yq dependency-version: 4.53.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-packages ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 728e847 commit 0827ca4

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v6.0.2
21+
uses: actions/checkout@v6.0.3
2222

2323
- name: Log in to the Container registry
2424
uses: docker/login-action@v4
@@ -46,18 +46,18 @@ jobs:
4646
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/llsp-api:latest
4747

4848
- name: Checkout the Gitops repository
49-
uses: actions/checkout@v6.0.2
49+
uses: actions/checkout@v6.0.3
5050
with:
5151
repository: fiaisis/gitops
5252
token: ${{ secrets.GITOPS_STAGING_EDIT_TOKEN }}
5353

5454
- name: Edit the YAML llsp-worker file for staging
55-
uses: mikefarah/yq@v4.52.5
55+
uses: mikefarah/yq@v4.53.2
5656
with:
5757
cmd: yq e -i '.spec.template.spec.containers[] |= select(.name == "llsp-worker").image = "ghcr.io/fiaisis/llsp-worker@${{ steps.worker_build.outputs.digest }}"' './components/llsp-worker/envs/staging/llsp-worker.yml'
5858

5959
- name: Edit the YAML llsp-api file for staging
60-
uses: mikefarah/yq@v4.52.5
60+
uses: mikefarah/yq@v4.53.2
6161
with:
6262
cmd: yq e -i '.spec.template.spec.containers[] |= select(.name == "llsp-api").image = "ghcr.io/fiaisis/llsp-api@${{ steps.api_build.outputs.digest }}"' './components/llsp-api/envs/staging/llsp-api.yml'
6363

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
steps:
1616
- name: Checkout project
1717
if: github.actor != 'dependabot[bot]'
18-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.7
18+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.1.7
1919
with:
2020
token: ${{ secrets.COMMIT_TOKEN }}
2121

2222
- name: Checkout project (dependabot)
2323
if: github.actor == 'dependabot[bot]'
24-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.7
24+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.1.7
2525

2626
- name: Set up Python
2727
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
api-unit-tests:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v6.0.2
9+
- uses: actions/checkout@v6.0.3
1010

1111
- name: Set up Python
1212
uses: actions/setup-python@v6
@@ -25,7 +25,7 @@ jobs:
2525
worker-unit-tests:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v6.0.2
28+
- uses: actions/checkout@v6.0.3
2929

3030
- name: Set up Python
3131
uses: actions/setup-python@v6
@@ -43,7 +43,7 @@ jobs:
4343
e2e-tests:
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v6.0.2
46+
- uses: actions/checkout@v6.0.3
4747

4848
- name: Build and Run Tests
4949
run: |

0 commit comments

Comments
 (0)