Skip to content

Commit da74a14

Browse files
chore(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 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` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `4` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | 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 `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/configure-pages` from 4 to 5 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) --- 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/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/configure-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 92db1dc commit da74a14

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/CompileMKDocsToPDF.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Create MkDocs Config
2222
working-directory: ./docs
@@ -34,7 +34,7 @@ jobs:
3434
REQUIREMENTS: docs/requirements.txt
3535

3636
- name: Upload PDF Artifact
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v7
3838
with:
3939
name: documentation-pdf
4040
path: pdfs

.github/workflows/MakeQGISPluginZipForManualInstalls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424

@@ -39,7 +39,7 @@ jobs:
3939
echo "ZIP_PATH=dist/$ZIP_NAME" >> "$GITHUB_OUTPUT"
4040
4141
- name: Upload plugin artifact
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v7
4343
with:
4444
name: ${{ steps.zip-details.outputs.ZIP_NAME }}
4545
path: ${{ steps.zip-details.outputs.ZIP_PATH }}

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838

3939
- name: Checkout
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141
with:
4242
submodules: recursive
4343

@@ -53,7 +53,7 @@ jobs:
5353
WITH_PYTHON_PEP=${WITH_PYTHON_PEP}
5454
EOF
5555
- name: Install python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: '3.10'
5959
cache: pip
@@ -80,10 +80,10 @@ jobs:
8080

8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v6
8484

8585
- name: Install python
86-
uses: actions/setup-python@v5
86+
uses: actions/setup-python@v6
8787
with:
8888
python-version: '3.10'
8989
cache: pip

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Setup Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: '3.10'
3232

@@ -45,10 +45,10 @@ jobs:
4545
fi
4646
4747
- name: Setup Pages
48-
uses: actions/configure-pages@v4
48+
uses: actions/configure-pages@v5
4949

5050
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v3
51+
uses: actions/upload-pages-artifact@v4
5252
with:
5353
path: './docs/site'
5454

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929

@@ -92,7 +92,7 @@ jobs:
9292

9393
steps:
9494
- name: Checkout release branch
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v6
9696
with:
9797
ref: release
9898
fetch-depth: 0

0 commit comments

Comments
 (0)