Skip to content

Commit e87e84c

Browse files
deps(github/action): bump all dependencies (#2825)
* chore: deps(github): bump Action tag for actions/add-to-project from ... ... v1.0.2 to 244f685bbc3b7adfa8466e08b698b5577571133e (Pinned from v1.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for actions/checkout from v4 to ... ... de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for actions/setup-node from v4.4... ... .0 to 53b83947a5a98c8d113130e565377fae1a50d02f (Pinned from v6.3.0) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for peaceiris/actions-hugo from ... ... v3 to 75d2e84710de30f6ff7268e08f310b60ef14033f (Pinned from v3.0.0) Made with ❤️️ by updatecli * chore: deps(github): bump Action branch for ruby/setup-ruby from v1 t... ... o e65c17d16e57e481586a6a5a0282698790062f92 (Pinned from v1) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for actions/checkout from v4 to ... ... de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for github/codeql-action/init fr... ... om v3 to c10b8064de6f491fea524254123dbe5e09572f13 (Pinned from v4.35.1) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for github/codeql-action/autobui... ... ld from v3 to c10b8064de6f491fea524254123dbe5e09572f13 (Pinned from v4.35.1) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for github/codeql-action/analyze... ... from v3 to c10b8064de6f491fea524254123dbe5e09572f13 (Pinned from v4.35.1) Made with ❤️️ by updatecli * chore: deps(github): bump Action release for actions/checkout from 1a... ... f3b93b6815bc44a9784bd300feb67ff0d1eeb3 to de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for crate-ci/typos from 631208b7... ... aac2daa8b707f55e7331f9112b0e062d to 02ea592e44b3a53c302f697cddca7641cd051c3d (Pinned from v1.45.0) Made with ❤️️ by updatecli * chore: deps(github): bump Action release for actions/checkout from 1a... ... f3b93b6815bc44a9784bd300feb67ff0d1eeb3 to de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for actions/checkout from v4 to ... ... de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action release for updatecli/releasepost-ac... ... tion from v0.5.0 to 864390bddae97db06ee881ab4a08d159b4464643 (Pinned from v0.5.0) Made with ❤️️ by updatecli * chore: deps(github): bump Action release for actions/checkout from 1a... ... f3b93b6815bc44a9784bd300feb67ff0d1eeb3 to de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli * chore: deps(github): bump Action tag for actions/checkout from 1af3b9... ... 3b6815bc44a9784bd300feb67ff0d1eeb3 to de0fac2e4500dabe0009e67214ff5f5447ce83dd (Pinned from v6.0.2) Made with ❤️️ by updatecli --------- Co-authored-by: updateclibot[bot] <92153806+updateclibot[bot]@users.noreply.github.com>
1 parent 169b868 commit e87e84c

File tree

8 files changed

+59
-80
lines changed

8 files changed

+59
-80
lines changed

.github/workflows/add_issue_to_project.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ on:
33
issues:
44
types:
55
- opened
6-
76
jobs:
87
add-to-project:
98
name: Add issue to Updatecli project
109
runs-on: ubuntu-latest
1110
steps:
12-
- uses: actions/add-to-project@v1.0.2
11+
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
1312
with:
1413
project-url: https://github.com/orgs/updatecli/projects/2
1514
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

.github/workflows/build.yaml

Lines changed: 25 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,36 @@
11
name: Build
2-
32
on:
43
merge_group:
54
branches: master
65
push:
76
branches: master
87
pull_request:
9-
108
jobs:
119
build:
1210
runs-on: ubuntu-latest
13-
1411
steps:
15-
- uses: actions/checkout@v4
16-
17-
- name: Use Node.js
18-
uses: actions/setup-node@v4.4.0
19-
with:
20-
node-version: 24
21-
22-
- name: Install Hugo
23-
uses: peaceiris/actions-hugo@v3
24-
with:
25-
hugo-version: 0.159.1
26-
extended: true
27-
28-
- name: Install Bundler
29-
uses: ruby/setup-ruby@v1
30-
with:
31-
ruby-version: 2.7
32-
bundler-cache: true
33-
34-
- name: Install asciidoctor
35-
run: gem install asciidoctor
36-
37-
- name: Show Hugo Version
38-
run: hugo version
39-
40-
- name: Install dependencies
41-
run: npm install
42-
43-
- name: Run Hyas test script
44-
run: npm test
45-
46-
- name: Build production website
47-
run: npm run build
12+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
13+
- name: Use Node.js
14+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
15+
with:
16+
node-version: 24
17+
- name: Install Hugo
18+
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0
19+
with:
20+
hugo-version: 0.159.1
21+
extended: true
22+
- name: Install Bundler
23+
uses: ruby/setup-ruby@e65c17d16e57e481586a6a5a0282698790062f92 # v1
24+
with:
25+
ruby-version: 2.7
26+
bundler-cache: true
27+
- name: Install asciidoctor
28+
run: gem install asciidoctor
29+
- name: Show Hugo Version
30+
run: hugo version
31+
- name: Install dependencies
32+
run: npm install
33+
- name: Run Hyas test script
34+
run: npm test
35+
- name: Build production website
36+
run: npm run build

.github/workflows/codeql-analysis.yml

Lines changed: 26 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# You may wish to alter this file to override the set of languages analyzed,
55
# or to provide custom queries or build logic.
66
name: "CodeQL"
7-
87
on:
98
merge_group:
109
branches: master
@@ -15,12 +14,10 @@ on:
1514
branches: [master]
1615
schedule:
1716
- cron: '0 11 * * 5'
18-
1917
jobs:
2018
analyze:
2119
name: Analyze
2220
runs-on: ubuntu-latest
23-
2421
strategy:
2522
fail-fast: false
2623
matrix:
@@ -29,36 +26,30 @@ jobs:
2926
language: ['javascript']
3027
# Learn more...
3128
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
32-
3329
steps:
34-
- name: Checkout repository
35-
uses: actions/checkout@v4
36-
37-
# Initializes the CodeQL tools for scanning.
38-
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@v3
40-
with:
41-
languages: ${{ matrix.language }}
42-
# If you wish to specify custom queries, you can do so here or in a config file.
43-
# By default, queries listed here will override any specified in a config file.
44-
# Prefix the list here with "+" to use these queries and those in the config file.
45-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
46-
47-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
48-
# If this step fails, then you should remove it and run the build manually (see below)
49-
- name: Autobuild
50-
uses: github/codeql-action/autobuild@v3
51-
52-
# ℹ️ Command-line programs to run using the OS shell.
53-
# 📚 https://git.io/JvXDl
54-
55-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
56-
# and modify them (or add more) to build your code if your project
57-
# uses a compiled language
58-
59-
#- run: |
60-
# make bootstrap
61-
# make release
62-
63-
- name: Perform CodeQL Analysis
64-
uses: github/codeql-action/analyze@v3
30+
- name: Checkout repository
31+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+
# Initializes the CodeQL tools for scanning.
33+
- name: Initialize CodeQL
34+
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
35+
with:
36+
languages: ${{ matrix.language }}
37+
# If you wish to specify custom queries, you can do so here or in a config file.
38+
# By default, queries listed here will override any specified in a config file.
39+
# Prefix the list here with "+" to use these queries and those in the config file.
40+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
41+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
42+
# If this step fails, then you should remove it and run the build manually (see below)
43+
- name: Autobuild
44+
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
45+
#- run: |
46+
# make bootstrap
47+
# make release
48+
- name: Perform CodeQL Analysis
49+
# ℹ️ Command-line programs to run using the OS shell.
50+
# 📚 https://git.io/JvXDl
51+
52+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
53+
# and modify them (or add more) to build your code if your project
54+
# uses a compiled language
55+
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1

.github/workflows/typos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
contents: read
1010
steps:
1111
- name: Checkout Actions Repository
12-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
12+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1313
- name: Check spelling of file.txt
14-
uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d # v1.44.0
14+
uses: crate-ci/typos@02ea592e44b3a53c302f697cddca7641cd051c3d # v1.45.0

.github/workflows/updatecli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: "Checkout"
14-
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3" # v6.0.0
14+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2
1515
- name: "Setup updatecli"
1616
uses: "updatecli/updatecli-action@2cc8e6d8e356d76b0280cdd03766c36596a0614e" # v3.0.0
1717
with:

.github/workflows/updatecli_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
pull-requests: write
1919
steps:
2020
- name: "Checkout"
21-
uses: "actions/checkout@v4"
21+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2
2222
- name: "Install Updatecli"
2323
uses: "updatecli/updatecli-action@2cc8e6d8e356d76b0280cdd03766c36596a0614e" # v3.0.0
2424
with:
2525
version: "v0.115.0"
2626
# releasepost is required by the Updatecli
2727
# * policy ghcr.io/updatecli/policies/releasepost/releasepost
2828
- name: "Install Releasepost"
29-
uses: "updatecli/releasepost-action@v0.5.0"
29+
uses: "updatecli/releasepost-action@864390bddae97db06ee881ab4a08d159b4464643" # v0.5.0
3030
- name: "Run updatecli only on release pipelines"
3131
run: updatecli compose apply --clean-git-branches=true --labels="release:updatecli" --experimental
3232
env:

.github/workflows/updatecli_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: "Checkout"
11-
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3" # v6.0.0
11+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2
1212
- name: "Setup updatecli"
1313
uses: "updatecli/updatecli-action@2cc8e6d8e356d76b0280cdd03766c36596a0614e" # v3.0.0
1414
with:

.github/workflows/updatecli_update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: "Checkout"
13-
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3" # v6.0.0
13+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2
1414
- name: "Setup updatecli"
1515
uses: "updatecli/updatecli-action@2cc8e6d8e356d76b0280cdd03766c36596a0614e" # v3.0.0
1616
with:

0 commit comments

Comments
 (0)