Skip to content

Commit bccd056

Browse files
fix(bot): bump the dependencies group across 1 directory with 5 updates (#144)
Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `6` | `8` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `golangci/golangci-lint-action` from 6 to 8 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v6...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: golangci/golangci-lint-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5707acb commit bccd056

10 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/ci-standard-checks-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
runs-on: 'ubuntu-latest'
2525
steps:
2626
- name: Check Out Source Code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0
30-
- uses: actions/setup-node@v4
30+
- uses: actions/setup-node@v5
3131
with:
3232
node-version: 20
3333
- name: CI Standard Checks

.github/workflows/combine-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- name: Create Combined PR
5050
id: create-combined-pr
51-
uses: actions/github-script@v7
51+
uses: actions/github-script@v8
5252
with:
5353
github-token: ${{ secrets.githubToken }}
5454
script: |

.github/workflows/comment-deploy-link.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Get deploy link(s)
31-
uses: actions/github-script@v7
31+
uses: actions/github-script@v8
3232
id: set-result
3333
env:
3434
PR_TITLE: ${{ github.event.pull_request.title }}

.github/workflows/create-github-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- uses: go-semantic-release/action@v1
2121
with:

.github/workflows/deep-purple-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Check out Git repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Extract app name from package.json
3636
run: |

.github/workflows/go-lint-workflow.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636

3737
steps:
3838
- name: Check out Git repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Check out repository containing linter config
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
repository: Typeform/golang-builder
4545
ref: main
@@ -54,13 +54,13 @@ jobs:
5454
export GOPRIVATE=github.com/Typeform/*
5555
5656
- name: Setup Go
57-
uses: actions/setup-go@v5
57+
uses: actions/setup-go@v6
5858
with:
5959
go-version: ${{ inputs.go-version }}
6060
cache: false
6161

6262
- name: golangci-lint
63-
uses: golangci/golangci-lint-action@v6
63+
uses: golangci/golangci-lint-action@v8
6464
id: golangci-lint
6565
with:
6666
version: ${{ inputs.golangci-lint-version }}

.github/workflows/graphql-generate-persisted-operations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: Set up Node.js
31-
uses: actions/setup-node@v4
31+
uses: actions/setup-node@v5
3232
with:
3333
node-version: 22
3434

.github/workflows/image-multiarch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: [ self-hosted, "${{ inputs.runner }}" ]
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
- name: Set up QEMU
6464
uses: docker/setup-qemu-action@v3
6565
- name: Set up Docker context for Buildx

.github/workflows/plantuml.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
if: ${{ github.actor != 'dependabot[bot]' }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
# Checkout the Pull Request branch, so that we are not in a detached head state.
2525
# and can push the re-generated diagrams to the HEAD of the same branch.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
- name: Update major version tag
1212
run: |
1313
git config --global user.email "security@typeform.com"

0 commit comments

Comments
 (0)