Skip to content

Commit 9b93581

Browse files
authored
Merge pull request #225 from per1234/bumps
Bump all dependencies to current versions
2 parents 69ca993 + f95f6ba commit 9b93581

39 files changed

+80
-80
lines changed

.github/workflows/check-python-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Python
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

.github/workflows/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check YAML
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

.github/workflows/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Spell Check
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

.github/workflows/test-python-poetry-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Test Python
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/assets/cobra/docsgen/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// TODO: replace MODULE_NAME with the project's module name
33
module MODULE_NAME/docsgen
44

5-
go 1.16
5+
go 1.17
66

77
replace MODULE_NAME => ../
88

99
require (
1010
MODULE_NAME v0.0.0
11-
github.com/spf13/cobra v1.2.1
11+
github.com/spf13/cobra v1.4.0
1212
)

workflow-templates/assets/release-go-task/DistTasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ version: "3"
1919

2020
vars:
2121
CONTAINER: "docker.elastic.co/beats-dev/golang-crossbuild"
22-
GO_VERSION: "1.16.4"
22+
GO_VERSION: "1.17.8"
2323
CHECKSUM_FILE: "{{.VERSION}}-checksums.txt"
2424

2525
tasks:

workflow-templates/check-go-dependencies-task.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: Check Go Dependencies
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
5+
# See: https://github.com/actions/setup-go/tree/v3#readme
6+
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
99
on:
@@ -76,7 +76,7 @@ jobs:
7676
version: 3.x
7777

7878
- name: Install Go
79-
uses: actions/setup-go@v2
79+
uses: actions/setup-go@v3
8080
with:
8181
go-version: ${{ env.GO_VERSION }}
8282

@@ -126,7 +126,7 @@ jobs:
126126
version: 3.x
127127

128128
- name: Install Go
129-
uses: actions/setup-go@v2
129+
uses: actions/setup-go@v3
130130
with:
131131
go-version: ${{ env.GO_VERSION }}
132132

workflow-templates/check-go-task.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: Check Go
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
5+
# See: https://github.com/actions/setup-go/tree/v3#readme
6+
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
99
on:
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v3
7272

7373
- name: Install Go
74-
uses: actions/setup-go@v2
74+
uses: actions/setup-go@v3
7575
with:
7676
go-version: ${{ env.GO_VERSION }}
7777

@@ -105,7 +105,7 @@ jobs:
105105
uses: actions/checkout@v3
106106

107107
- name: Install Go
108-
uses: actions/setup-go@v2
108+
uses: actions/setup-go@v3
109109
with:
110110
go-version: ${{ env.GO_VERSION }}
111111

@@ -142,7 +142,7 @@ jobs:
142142
uses: actions/checkout@v3
143143

144144
- name: Install Go
145-
uses: actions/setup-go@v2
145+
uses: actions/setup-go@v3
146146
with:
147147
go-version: ${{ env.GO_VERSION }}
148148

@@ -179,7 +179,7 @@ jobs:
179179
uses: actions/checkout@v3
180180

181181
- name: Install Go
182-
uses: actions/setup-go@v2
182+
uses: actions/setup-go@v3
183183
with:
184184
go-version: ${{ env.GO_VERSION }}
185185

@@ -216,7 +216,7 @@ jobs:
216216
uses: actions/checkout@v3
217217

218218
- name: Install Go
219-
uses: actions/setup-go@v2
219+
uses: actions/setup-go@v3
220220
with:
221221
go-version: ${{ env.GO_VERSION }}
222222

workflow-templates/check-mkdocs-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Website
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/check-python-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ https://python-poetry.org/docs/#installation
3131
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:
3232

3333
```
34-
poetry init --python="^3.9" --dev-dependency="black@^21.12b0" --dev-dependency="flake8@^4.0.1" --dev-dependency="pep8-naming@^0.12.1"
34+
poetry init --python="^3.9" --dev-dependency="black@^22.3" --dev-dependency="flake8@^4.0.1" --dev-dependency="pep8-naming@^0.12.1"
3535
poetry install
3636
```
3737

3838
If already using Poetry, add the tool using this command:
3939

4040
```
41-
poetry add --dev "black@^21.12b0" "flake8@^4.0.1" "pep8-naming@^0.12.1"
41+
poetry add --dev "black@^22.3" "flake8@^4.0.1" "pep8-naming@^0.12.1"
4242
```
4343

4444
Commit the resulting `pyproject.toml` and `poetry.lock` files.

workflow-templates/check-python-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Python
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check YAML
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-go-dependencies-task.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: Check Go Dependencies
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
5+
# See: https://github.com/actions/setup-go/tree/v3#readme
6+
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
99
on:
@@ -76,7 +76,7 @@ jobs:
7676
version: 3.x
7777

7878
- name: Install Go
79-
uses: actions/setup-go@v2
79+
uses: actions/setup-go@v3
8080
with:
8181
go-version: ${{ env.GO_VERSION }}
8282

@@ -126,7 +126,7 @@ jobs:
126126
version: 3.x
127127

128128
- name: Install Go
129-
uses: actions/setup-go@v2
129+
uses: actions/setup-go@v3
130130
with:
131131
go-version: ${{ env.GO_VERSION }}
132132

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-go-task.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: Check Go
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
5+
# See: https://github.com/actions/setup-go/tree/v3#readme
6+
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
99
on:
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v3
7272

7373
- name: Install Go
74-
uses: actions/setup-go@v2
74+
uses: actions/setup-go@v3
7575
with:
7676
go-version: ${{ env.GO_VERSION }}
7777

@@ -105,7 +105,7 @@ jobs:
105105
uses: actions/checkout@v3
106106

107107
- name: Install Go
108-
uses: actions/setup-go@v2
108+
uses: actions/setup-go@v3
109109
with:
110110
go-version: ${{ env.GO_VERSION }}
111111

@@ -142,7 +142,7 @@ jobs:
142142
uses: actions/checkout@v3
143143

144144
- name: Install Go
145-
uses: actions/setup-go@v2
145+
uses: actions/setup-go@v3
146146
with:
147147
go-version: ${{ env.GO_VERSION }}
148148

@@ -179,7 +179,7 @@ jobs:
179179
uses: actions/checkout@v3
180180

181181
- name: Install Go
182-
uses: actions/setup-go@v2
182+
uses: actions/setup-go@v3
183183
with:
184184
go-version: ${{ env.GO_VERSION }}
185185

@@ -216,7 +216,7 @@ jobs:
216216
uses: actions/checkout@v3
217217

218218
- name: Install Go
219-
uses: actions/setup-go@v2
219+
uses: actions/setup-go@v3
220220
with:
221221
go-version: ${{ env.GO_VERSION }}
222222

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-mkdocs-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Website
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-python-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Python
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check YAML
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/dependabot/workflow-template-copies/.github/workflows/deploy-cobra-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Deploy Website
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
on:

workflow-templates/dependabot/workflow-template-copies/.github/workflows/deploy-mkdocs-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Deploy Website
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/dependabot/workflow-template-copies/.github/workflows/deploy-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Deploy Website
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
on:

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-crosscompile-task.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ env:
99
# The project's folder on Arduino's download server for uploading builds
1010
AWS_PLUGIN_TARGET: TODO
1111
ARTIFACT_NAME: dist
12-
# See: https://github.com/actions/setup-go/tree/v2#readme
13-
GO_VERSION: 1.16
12+
# See: https://github.com/actions/setup-go/tree/v3#readme
13+
GO_VERSION: "1.17"
1414

1515
on:
1616
push:
@@ -36,7 +36,7 @@ jobs:
3636
changelog-file-path: "${{ env.DIST_DIR }}/CHANGELOG.md"
3737

3838
- name: Install Go
39-
uses: actions/setup-go@v2
39+
uses: actions/setup-go@v3
4040
with:
4141
go-version: ${{ env.GO_VERSION }}
4242

@@ -147,7 +147,7 @@ jobs:
147147
# to implement auto pre-release based on tag
148148
id: prerelease
149149
run: |
150-
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.0.0.zip
150+
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
151151
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
152152
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
153153

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
# to implement auto pre-release based on tag
141141
id: prerelease
142142
run: |
143-
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.0.0.zip
143+
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
144144
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
145145
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
146146

workflow-templates/dependabot/workflow-template-copies/.github/workflows/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Spell Check
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

workflow-templates/dependabot/workflow-template-copies/.github/workflows/test-go-integration-task.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name: Test Integration
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
7-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-go/tree/v3#readme
6+
GO_VERSION: "1.17"
7+
# See: https://github.com/actions/setup-python/tree/v3#available-versions-of-python
88
PYTHON_VERSION: "3.9"
99

1010
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
@@ -78,7 +78,7 @@ jobs:
7878
uses: actions/checkout@v3
7979

8080
- name: Install Go
81-
uses: actions/setup-go@v2
81+
uses: actions/setup-go@v3
8282
with:
8383
go-version: ${{ env.GO_VERSION }}
8484

0 commit comments

Comments
 (0)