Skip to content

Commit d1778d8

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action). 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 `stefanzweifel/git-auto-commit-action` from 6 to 7 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](stefanzweifel/git-auto-commit-action@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 656ca23 commit d1778d8

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
3939
runs-on: ${{ matrix.os }}
4040
steps:
41-
- uses: actions/checkout@v4
42-
- uses: actions/setup-node@v4
41+
- uses: actions/checkout@v5
42+
- uses: actions/setup-node@v6
4343
with:
4444
node-version: ${{ matrix.node }}
4545
- if: ${{ startsWith(matrix.os, 'windows') }}
@@ -74,8 +74,8 @@ jobs:
7474
- prebuild-linux-x64
7575
- prebuild-linux-arm
7676
steps:
77-
- uses: actions/checkout@v4
78-
- uses: actions/setup-node@v4
77+
- uses: actions/checkout@v5
78+
- uses: actions/setup-node@v6
7979
with:
8080
node-version: 20
8181
registry-url: https://registry.npmjs.org
@@ -96,8 +96,8 @@ jobs:
9696
runs-on: ${{ matrix.os }}
9797
needs: test
9898
steps:
99-
- uses: actions/checkout@v4
100-
- uses: actions/setup-node@v4
99+
- uses: actions/checkout@v5
100+
- uses: actions/setup-node@v6
101101
with:
102102
node-version: 20
103103
- if: ${{ startsWith(matrix.os, 'windows') }}
@@ -121,7 +121,7 @@ jobs:
121121
container: node:20-bullseye
122122
needs: test
123123
steps:
124-
- uses: actions/checkout@v4
124+
- uses: actions/checkout@v5
125125
- run: npm install --ignore-scripts
126126
- run: ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
127127
- run: ${{ env.ELECTRON_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
@@ -133,7 +133,7 @@ jobs:
133133
container: node:20-alpine
134134
needs: test
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v5
137137
- run: apk add build-base git python3 py3-setuptools --update-cache
138138
- run: npm install --ignore-scripts
139139
- run: ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
@@ -150,7 +150,7 @@ jobs:
150150
runs-on: ubuntu-latest
151151
needs: test
152152
steps:
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@v5
154154
- uses: docker/setup-qemu-action@v3
155155
- run: |
156156
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:20-alpine -c "\
@@ -171,7 +171,7 @@ jobs:
171171
runs-on: ubuntu-latest
172172
needs: test
173173
steps:
174-
- uses: actions/checkout@v4
174+
- uses: actions/checkout@v5
175175
- uses: docker/setup-qemu-action@v3
176176
- run: |
177177
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:20-bullseye -c "\

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
name: Bump to a new version
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
token: ${{ secrets.PAT }}
2323
fetch-depth: 0
24-
- uses: actions/setup-node@v4
24+
- uses: actions/setup-node@v6
2525
with:
2626
node-version: 20
2727
- name: Configure user

.github/workflows/update-sqlite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
ENV_YEAR: ${{ github.event.inputs.year }}
1919
ENV_VERSION: ${{ github.event.inputs.version }}
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
token: ${{ secrets.PAT }}
2424
fetch-depth: 0
25-
- uses: actions/setup-node@v4
25+
- uses: actions/setup-node@v6
2626
with:
2727
node-version: 20
2828
- name: Create new update branch
@@ -35,7 +35,7 @@ jobs:
3535
- name: Download, compile and package SQLite
3636
run: npm run download
3737
- name: Push update branch
38-
uses: stefanzweifel/git-auto-commit-action@v6
38+
uses: stefanzweifel/git-auto-commit-action@v7
3939
with:
4040
commit_message: Update SQLite to version ${{ env.ENV_TRUE_VERSION }}
4141
branch: sqlite-update-${{ env.ENV_VERSION }}

0 commit comments

Comments
 (0)