Skip to content

Commit ddbb7a3

Browse files
Bump the github-actions group with 3 updates (#465)
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [docker/metadata-action](https://github.com/docker/metadata-action) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `actions/checkout` from ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 to 71cf2267d89c5cb81562390fa70a37fa40b1305e - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@ff7abcd...71cf226) Updates `docker/metadata-action` from 5.8.0 to 5.9.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5.8.0...v5.9.0) 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 71cf2267d89c5cb81562390fa70a37fa40b1305e dependency-type: direct:production dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: 5.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent be75de0 commit ddbb7a3

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/build-image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
packages: write
2323
contents: read
2424
steps:
25-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
25+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
2626
with:
2727
fetch-tags: true
2828
- name: Set up QEMU
@@ -49,7 +49,7 @@ jobs:
4949
echo "latest_tag=$LATEST_TAG" >> $GITHUB_OUTPUT
5050
- name: Generate docker image tag
5151
id: meta
52-
uses: docker/metadata-action@v5.8.0
52+
uses: docker/metadata-action@v5.9.0
5353
with:
5454
images: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
5555
tags: |

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5959
steps:
6060
- name: Checkout repository
61-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
61+
uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
6262

6363
# Add any setup steps before running the `github/codeql-action/init` action.
6464
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/e2e-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name != 'workflow_run' }}
2828
steps:
29-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
29+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
3030
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
3131
with:
3232
go-version-file: "go.mod"
@@ -40,7 +40,7 @@ jobs:
4040
name: Against netbox version 4.0.11
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
43+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
4444
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
4545
with:
4646
go-version-file: "go.mod"
@@ -54,7 +54,7 @@ jobs:
5454
name: Against netbox version 4.1.11
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
57+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
5858
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
5959
with:
6060
go-version-file: "go.mod"

.github/workflows/govuln.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name != 'workflow_run' }}
1919
steps:
20-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
20+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
2121
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2222
with:
2323
go-version-file: "go.mod"

.github/workflows/integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name != 'workflow_run' }}
2020
steps:
21-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
21+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
2222
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2323
with:
2424
go-version-file: "go.mod"

.github/workflows/lint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name != 'workflow_run' }}
1919
steps:
20-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
20+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
2121
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2222
with:
2323
go-version-file: "go.mod"
2424
- name: golangci-lint
25-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
25+
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
2626
with:
2727
version: v2.4.0
2828
args: --config tools/.golangci.yaml
@@ -66,14 +66,14 @@ jobs:
6666
codespell:
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
69+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
7070
- name: Run codespell
7171
uses: codespell-project/actions-codespell@v2
7272
with:
7373
skip: "*.svg"
7474
yamllint:
7575
runs-on: ubuntu-latest
7676
steps:
77-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
77+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
7878
- name: "Yamllint"
7979
uses: karancode/yamllint-github-action@master

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
25+
uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
2626
with:
2727
token: ${{ secrets.GITHUB_TOKEN }}
2828
fetch-depth: 0

.github/workflows/unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name != 'workflow_run' }}
2020
steps:
21-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
21+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e # v5.0.0
2222
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2323
with:
2424
go-version-file: "go.mod"

0 commit comments

Comments
 (0)