Skip to content

Commit 8f85df3

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 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v5...v6) 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: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' 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 6b5cbc2 commit 8f85df3

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
3535
runs-on: ${{ matrix.os }}
3636
steps:
37-
- uses: actions/checkout@v5
38-
- uses: actions/setup-node@v5
37+
- uses: actions/checkout@v6
38+
- uses: actions/setup-node@v6
3939
with:
4040
node-version: ${{ matrix.node }}
4141
- if: ${{ startsWith(matrix.os, 'windows') }}
@@ -65,7 +65,7 @@ jobs:
6565
name: Testing Bun ${{ matrix.bun }} on ${{ matrix.os }}
6666
runs-on: ${{ matrix.os }}
6767
steps:
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
- uses: oven-sh/setup-bun@v2
7070
with:
7171
bun-version: ${{ matrix.bun }}
@@ -93,8 +93,8 @@ jobs:
9393
- prebuild-linux-x64
9494
- prebuild-linux-arm
9595
steps:
96-
- uses: actions/checkout@v5
97-
- uses: actions/setup-node@v5
96+
- uses: actions/checkout@v6
97+
- uses: actions/setup-node@v6
9898
with:
9999
node-version: 20
100100
registry-url: https://registry.npmjs.org
@@ -115,8 +115,8 @@ jobs:
115115
runs-on: ${{ matrix.os }}
116116
needs: test
117117
steps:
118-
- uses: actions/checkout@v5
119-
- uses: actions/setup-node@v5
118+
- uses: actions/checkout@v6
119+
- uses: actions/setup-node@v6
120120
with:
121121
node-version: 20
122122
- if: ${{ startsWith(matrix.os, 'windows') }}
@@ -137,7 +137,7 @@ jobs:
137137
container: node:20-bullseye
138138
needs: test
139139
steps:
140-
- uses: actions/checkout@v5
140+
- uses: actions/checkout@v6
141141
- run: npm install --ignore-scripts
142142
- run: ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
143143

@@ -148,7 +148,7 @@ jobs:
148148
container: node:20-alpine
149149
needs: test
150150
steps:
151-
- uses: actions/checkout@v5
151+
- uses: actions/checkout@v6
152152
- run: apk add build-base git python3 py3-setuptools libstdc++ readline-dev ncurses-dev --update-cache
153153
- run: npm install --ignore-scripts
154154
- run: ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
@@ -165,7 +165,7 @@ jobs:
165165
runs-on: ubuntu-latest
166166
needs: test
167167
steps:
168-
- uses: actions/checkout@v5
168+
- uses: actions/checkout@v6
169169
- uses: docker/setup-qemu-action@v3
170170
- run: |
171171
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:20-alpine -c "\
@@ -186,7 +186,7 @@ jobs:
186186
runs-on: ubuntu-latest
187187
needs: test
188188
steps:
189-
- uses: actions/checkout@v5
189+
- uses: actions/checkout@v6
190190
- uses: docker/setup-qemu-action@v3
191191
- run: |
192192
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@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
token: ${{ secrets.PAT }}
2323
fetch-depth: 0
24-
- uses: actions/setup-node@v5
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@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
token: ${{ secrets.PAT }}
2424
fetch-depth: 0
25-
- uses: actions/setup-node@v5
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)