Skip to content

Commit 249da7a

Browse files
build(deps): bump the all-actions group across 1 directory with 8 updates
Bumps the all-actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) | `9` | `16` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `dawidd6/action-download-artifact` from 9 to 16 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](dawidd6/action-download-artifact@v9...v16) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: dawidd6/action-download-artifact dependency-version: '16' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9d50434 commit 249da7a

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/build-pr-check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
jekyll-pr-check:
1616
runs-on: ubuntu-22.04
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: '0'
2121

@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
ruby-version: 2.7
2626

27-
- uses: actions/upload-artifact@v4
27+
- uses: actions/upload-artifact@v7
2828
with:
2929
name: blog-post-source
3030
path: |
@@ -38,7 +38,7 @@ jobs:
3838
format_output: true
3939
custom_opts: '--drafts --future'
4040

41-
- uses: actions/upload-artifact@v4
41+
- uses: actions/upload-artifact@v7
4242
with:
4343
name: blog-content
4444
path: ./_site
@@ -49,11 +49,11 @@ jobs:
4949
run: |
5050
echo "${{ github.event.number }}" > PR_NUMBER
5151
echo "${{ github.event.pull_request.head.sha }}" > PR_SHA
52-
- uses: actions/upload-artifact@v4
52+
- uses: actions/upload-artifact@v7
5353
with:
5454
name: pull-request-number
5555
path: PR_NUMBER
56-
- uses: actions/upload-artifact@v4
56+
- uses: actions/upload-artifact@v7
5757
with:
5858
name: pull-request-sha
5959
path: PR_SHA
@@ -63,7 +63,7 @@ jobs:
6363
format: 'json'
6464
- run: |
6565
jq -r '.' <<< '${{ steps.get-files.outputs.all }}' > modified_files.json
66-
- uses: actions/upload-artifact@v4
66+
- uses: actions/upload-artifact@v7
6767
with:
6868
name: modified-files
6969
path: modified_files.json

.github/workflows/docker-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ jobs:
2020
runs-on: ubuntu-22.04
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
- name: Set up QEMU
25-
uses: docker/setup-qemu-action@v3
25+
uses: docker/setup-qemu-action@v4
2626
- name: Set up Docker Buildx
27-
uses: docker/setup-buildx-action@v3
27+
uses: docker/setup-buildx-action@v4
2828
- name: Login to docker.io
29-
uses: docker/login-action@v3
29+
uses: docker/login-action@v4
3030
with:
3131
username: ${{ secrets.DOCKERHUB_USERNAME }}
3232
password: ${{ secrets.DOCKERHUB_PASSWORD }}
3333
registry: docker.io
3434
- name: Login to quay.io
35-
uses: docker/login-action@v3
35+
uses: docker/login-action@v4
3636
with:
3737
username: ${{ secrets.QUAY_USERNAME }}
3838
password: ${{ secrets.QUAY_PASSWORD }}

.github/workflows/publish-surge-pr-check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
runs-on: ubuntu-22.04
2222
steps:
2323
- name: download dist artifact
24-
uses: dawidd6/action-download-artifact@v9
24+
uses: dawidd6/action-download-artifact@v20
2525
with:
2626
workflow: ${{ github.event.workflow_run.workflow_id }}
2727
name: blog-content
2828
path: _site
2929
- name: PR number
30-
uses: dawidd6/action-download-artifact@v9
30+
uses: dawidd6/action-download-artifact@v20
3131
with:
3232
workflow: ${{ github.event.workflow_run.workflow_id }}
3333
name: pull-request-number
@@ -40,15 +40,15 @@ jobs:
4040
fi
4141
echo "PR_NUMBER=$pr_number" >> $GITHUB_ENV
4242
- name: PR sha
43-
uses: dawidd6/action-download-artifact@v9
43+
uses: dawidd6/action-download-artifact@v20
4444
with:
4545
workflow: ${{ github.event.workflow_run.workflow_id }}
4646
name: pull-request-sha
4747
- name: Grab pull request sha1
4848
run: |
4949
pr_sha=$(cat "PR_SHA")
5050
echo "PR_SHA=$pr_sha" >> $GITHUB_ENV
51-
- uses: actions/setup-node@v4
51+
- uses: actions/setup-node@v6
5252
with:
5353
node-version: '20'
5454
- name: publish
@@ -60,7 +60,7 @@ jobs:
6060
echo "DEPLOY_DOMAIN=$DEPLOY_DOMAIN" >> $GITHUB_ENV
6161
surge ./_site --domain $DEPLOY_DOMAIN
6262
- name: 'Comment PR'
63-
uses: actions/github-script@v7
63+
uses: actions/github-script@v9
6464
with:
6565
script: |
6666
const { repo: { owner, repo } } = context;

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
jekyll:
2020
runs-on: ubuntu-22.04
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: '0'
2525

.github/workflows/vale.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-22.04
2121
steps:
2222
- name: download modified files
23-
uses: dawidd6/action-download-artifact@v9
23+
uses: dawidd6/action-download-artifact@v20
2424
with:
2525
workflow: ${{ github.event.workflow_run.workflow_id }}
2626
name: modified-files
@@ -31,7 +31,7 @@ jobs:
3131
jq -cr '.' modified-files/modified_files.json >> $GITHUB_ENV
3232
echo 'EOF' >> $GITHUB_ENV
3333
- name: PR sha
34-
uses: dawidd6/action-download-artifact@v9
34+
uses: dawidd6/action-download-artifact@v20
3535
with:
3636
workflow: ${{ github.event.workflow_run.workflow_id }}
3737
name: pull-request-sha
@@ -40,7 +40,7 @@ jobs:
4040
pr_sha=$(cat "PR_SHA")
4141
echo "PR_SHA=$pr_sha" >> $GITHUB_ENV
4242
- name: download blog posts source
43-
uses: dawidd6/action-download-artifact@v9
43+
uses: dawidd6/action-download-artifact@v20
4444
with:
4545
workflow: ${{ github.event.workflow_run.workflow_id }}
4646
name: blog-post-source

0 commit comments

Comments
 (0)