Skip to content

Commit ca042e0

Browse files
chore(deps): bump the github-action-dependencies group across 1 directory with 6 updates
Bumps the github-action-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5.0.0` | `6.0.0` | | [elgohr/Publish-Docker-Github-Action](https://github.com/elgohr/publish-docker-github-action) | `1d95820b6952cab6e48a2454ff6ca9804bf65f31` | `15cc35eb4da44fc6b93b817f1e1a5f01b5456e50` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8.0.0` | `9.0.0` | | [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) | `2.11.2` | `2.11.3` | | [mikefarah/yq](https://github.com/mikefarah/yq) | `4.48.1` | `4.48.2` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.31.2` | `4.31.4` | Updates `actions/checkout` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...1af3b93) Updates `elgohr/Publish-Docker-Github-Action` from 1d95820b6952cab6e48a2454ff6ca9804bf65f31 to 15cc35eb4da44fc6b93b817f1e1a5f01b5456e50 - [Release notes](https://github.com/elgohr/publish-docker-github-action/releases) - [Commits](elgohr/Publish-Docker-Github-Action@1d95820...15cc35e) Updates `golangci/golangci-lint-action` from 8.0.0 to 9.0.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@4afd733...0a35821) Updates `svenstaro/upload-release-action` from 2.11.2 to 2.11.3 - [Release notes](https://github.com/svenstaro/upload-release-action/releases) - [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md) - [Commits](svenstaro/upload-release-action@81c65b7...6b7fa9f) Updates `mikefarah/yq` from 4.48.1 to 4.48.2 - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](mikefarah/yq@0ecdce2...796317b) Updates `github/codeql-action` from 4.31.2 to 4.31.4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0499de3...e12f017) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: elgohr/Publish-Docker-Github-Action dependency-version: 15cc35eb4da44fc6b93b817f1e1a5f01b5456e50 dependency-type: direct:production dependency-group: github-action-dependencies - dependency-name: golangci/golangci-lint-action dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: svenstaro/upload-release-action dependency-version: 2.11.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: mikefarah/yq dependency-version: 4.48.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: github/codeql-action dependency-version: 4.31.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1612c70 commit ca042e0

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

.github/workflows/build-debug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
egress-policy: audit
2020

21-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222

2323
- name: Publish to DockerHub Registry
24-
uses: elgohr/Publish-Docker-Github-Action@1d95820b6952cab6e48a2454ff6ca9804bf65f31 # v5
24+
uses: elgohr/Publish-Docker-Github-Action@91c436a78cf9a03eab9a942f18afc723a96db263 # v5
2525
with:
2626
name: flanksource/config-db
2727
username: ${{ secrets.DOCKER_USERNAME }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
egress-policy: audit
1515

1616
- name: Checkout code
17-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
17+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1818
- name: Build Container
1919
run: make docker
2020
env:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
name: lint
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
16+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1717
- name: Install Go
1818
uses: buildjet/setup-go@555ce355a95ff01018ffcf8fbbd9c44654db8374 # v5
1919
with:
2020
go-version: 1.25.x
2121

2222
- run: make resources
2323
- name: golangci-lint
24-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
24+
uses: golangci/golangci-lint-action@e7fa5ac41e1cf5b7d48e45e42232ce7ada589601 # v9.1.0

.github/workflows/release.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
release-version: ${{ steps.semantic.outputs.release-version }}
1616
new-release-published: ${{ steps.semantic.outputs.new-release-published }}
1717
steps:
18-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1919
- uses: codfish/semantic-release-action@6c65402abb31a48c3f7396d7d099da015be67c2b # v4.0.1
2020
id: semantic
2121
env:
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
egress-policy: audit
3131

32-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
32+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3333
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3434
with:
3535
node-version: "16"
@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
VERSION: v${{ needs.semantic-release.outputs.release-version }}
5353
- name: Upload binaries to release
54-
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # 2.11.2
54+
uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # 2.11.3
5555
with:
5656
repo_token: ${{ secrets.GITHUB_TOKEN }}
5757
file: ./.release/*
@@ -67,10 +67,10 @@ jobs:
6767
with:
6868
egress-policy: audit
6969

70-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
70+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
7171

7272
- name: Publish to DockerHub Registry
73-
uses: elgohr/Publish-Docker-Github-Action@1d95820b6952cab6e48a2454ff6ca9804bf65f31 # v5
73+
uses: elgohr/Publish-Docker-Github-Action@91c436a78cf9a03eab9a942f18afc723a96db263 # v5
7474
with:
7575
name: flanksource/config-db
7676
username: ${{ secrets.DOCKER_USERNAME }}
@@ -107,22 +107,22 @@ jobs:
107107
needs: [semantic-release, docker]
108108
if: needs.semantic-release.outputs.new-release-published == 'true'
109109
steps:
110-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
110+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
111111
- name: Set version
112112
# Always use git tags as semantic release can fail due to rate limit
113113
run: |
114114
git fetch --prune --unshallow
115115
echo "RELEASE_VERSION=$(git describe --abbrev=0 --tags | sed -e 's/^v//')" >> $GITHUB_ENV
116116
- name: Update chart version
117-
uses: mikefarah/yq@0ecdce24e83f0fa127940334be98c86b07b0c488 # v4.45.1
117+
uses: mikefarah/yq@45be35c06387d692bb6bf689919919e0e32e796f # v4.45.1
118118
with:
119119
cmd: yq -i e '.version = "${{ env.RELEASE_VERSION }}"' chart/Chart.yaml
120120
- name: Update app version
121-
uses: mikefarah/yq@0ecdce24e83f0fa127940334be98c86b07b0c488 # v4.45.1
121+
uses: mikefarah/yq@45be35c06387d692bb6bf689919919e0e32e796f # v4.45.1
122122
with:
123123
cmd: yq -i e '.appVersion = "${{ env.RELEASE_VERSION }}"' chart/values.yaml
124124
- name: Update image tags
125-
uses: mikefarah/yq@0ecdce24e83f0fa127940334be98c86b07b0c488 # v4.45.1
125+
uses: mikefarah/yq@45be35c06387d692bb6bf689919919e0e32e796f # v4.45.1
126126
with:
127127
cmd: yq -i e '.image.tag = "v${{ env.RELEASE_VERSION }}"' chart/values.yaml
128128
- name: Set up Helm
@@ -133,7 +133,7 @@ jobs:
133133
run: |
134134
helm package ./chart
135135
- name: Clone charts repo
136-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
136+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
137137
with:
138138
repository: "${{ github.repository_owner }}/charts"
139139
path: charts
@@ -154,17 +154,17 @@ jobs:
154154
runs-on: ubuntu-latest
155155
needs: [helm, semantic-release]
156156
steps:
157-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
157+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
158158
with:
159159
repository: "${{ github.repository_owner }}/incident-commander-chart"
160160
token: ${{ secrets.FLANKBOT }}
161161
path: ./incident-commander-chart
162162
- name: Update config-db version in chart/Chart.yaml
163-
uses: mikefarah/yq@0ecdce24e83f0fa127940334be98c86b07b0c488 # v4.45.1
163+
uses: mikefarah/yq@45be35c06387d692bb6bf689919919e0e32e796f # v4.45.1
164164
with:
165165
cmd: yq eval-all -i '(.dependencies[] | select(.name == "config-db")) ref $d | $d.version = "${{ needs.semantic-release.outputs.release-version }}"' incident-commander-chart/chart/Chart.yaml
166166
- name: Update config-db version in agent-chart/Chart.yaml
167-
uses: mikefarah/yq@0ecdce24e83f0fa127940334be98c86b07b0c488 # v4.45.1
167+
uses: mikefarah/yq@45be35c06387d692bb6bf689919919e0e32e796f # v4.45.1
168168
with:
169169
cmd: yq eval-all -i '(.dependencies[] | select(.name == "config-db")) ref $d | $d.version = "${{ needs.semantic-release.outputs.release-version }}"' incident-commander-chart/agent-chart/Chart.yaml
170170
- name: Push changes to chart repo

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
35+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3636
with:
3737
persist-credentials: false
3838

@@ -67,6 +67,6 @@ jobs:
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
70+
uses: github/codeql-action/upload-sarif@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
7171
with:
7272
sarif_file: results.sarif

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
go-version: 1.25.x
1717
- name: Checkout code
18-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1919
- uses: buildjet/cache@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4
2020
with:
2121
path: |
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
go-version: 1.25.x
6666
- name: Checkout code
67-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
67+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6868
- uses: buildjet/cache@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4
6969
with:
7070
path: |
@@ -94,7 +94,7 @@ jobs:
9494
- name: Install Rust
9595
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1
9696
- name: Checkout code
97-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
97+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
9898
- uses: buildjet/cache@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4
9999
with:
100100
path: |
@@ -111,7 +111,7 @@ jobs:
111111
runs-on: ubuntu-latest
112112
steps:
113113
- name: Checkout code
114-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
114+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
115115

116116
- name: Kubernetes KinD Cluster
117117
uses: container-tools/kind-action@0ad70e2299366b0e1552c7240f4e4567148f723e # v2
@@ -174,7 +174,7 @@ jobs:
174174
- name: Setup kubernetes cluster
175175
uses: container-tools/kind-action@0ad70e2299366b0e1552c7240f4e4567148f723e # v2
176176
- name: Checkout code
177-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
177+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
178178
- uses: buildjet/cache@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4
179179
with:
180180
path: |

0 commit comments

Comments
 (0)