Skip to content

Commit 437014c

Browse files
authored
Merge pull request OSGeo#4797 from OSGeo/dependabot/github_actions/all-actions-8bf629ebe6
build(deps): bump the all-actions group with 6 updates
2 parents 185c57b + 1985856 commit 437014c

15 files changed

Lines changed: 35 additions & 35 deletions

.github/workflows/auto_tag_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Checkout code
3232
if: steps.check_branch.outputs.run == 'true'
33-
uses: actions/checkout@v6.0.2
33+
uses: actions/checkout@v7.0.0
3434

3535
- name: Tag
3636
if: steps.check_branch.outputs.run == 'true'

.github/workflows/clang_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v6.0.2
45+
uses: actions/checkout@v7.0.0
4646

4747
- name: Cache
48-
uses: actions/cache@v5
48+
uses: actions/cache@v6.1.0
4949
id: cache
5050
with:
5151
path: |

.github/workflows/clang_static_analyzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v6.0.2
25+
uses: actions/checkout@v7.0.0
2626

2727
- name: Run
2828
run: .github/workflows/clang_static_analyzer/start.sh

.github/workflows/code_checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v6.0.2
25+
uses: actions/checkout@v7.0.0
2626

2727
- name: Install Requirements
2828
run: |
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v6.0.2
39+
uses: actions/checkout@v7.0.0
4040

4141
- name: Install Requirements
4242
run: |
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@v6.0.2
72+
uses: actions/checkout@v7.0.0
7373

7474
- name: Detect missing includes
7575
run: ./scripts/detect_missing_include.sh
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-24.04
7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@v6.0.2
81+
uses: actions/checkout@v7.0.0
8282

8383
- name: Install Requirements
8484
run: |
@@ -95,6 +95,6 @@ jobs:
9595
linting:
9696
runs-on: ubuntu-24.04
9797
steps:
98-
- uses: actions/checkout@v6.0.2
98+
- uses: actions/checkout@v7.0.0
9999
- uses: actions/setup-python@v6
100100
- uses: pre-commit/action@v3.0.1

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v6.0.2
40+
uses: actions/checkout@v7.0.0
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v4.36.0
44+
uses: github/codeql-action/init@v4.36.2
4545
with:
4646
languages: ${{ matrix.language }}
4747
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -66,7 +66,7 @@ jobs:
6666
- name: Restore build cache
6767
if: matrix.language == 'c-cpp'
6868
id: restore-cache
69-
uses: actions/cache/restore@v5
69+
uses: actions/cache/restore@v6.1.0
7070
with:
7171
path: ${{ github.workspace }}/.ccache
7272
key: ${{ matrix.id }}-${{ steps.get-arch.outputs.arch }}-${{ github.ref_name }}-${{ github.run_id }}
@@ -93,12 +93,12 @@ jobs:
9393
ccache -s
9494
- name: Save build cache
9595
if: matrix.language == 'c-cpp'
96-
uses: actions/cache/save@v5
96+
uses: actions/cache/save@v6.1.0
9797
with:
9898
path: ${{ github.workspace }}/.ccache
9999
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
100100

101101
- name: Perform CodeQL Analysis
102-
uses: github/codeql-action/analyze@v4.36.0
102+
uses: github/codeql-action/analyze@v4.36.2
103103
with:
104104
category: "/language:${{matrix.language}}"

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
GHA_CI_PLATFORM: ${{ matrix.platform }}
3131

3232
steps:
33-
- uses: actions/checkout@v6.0.2
33+
- uses: actions/checkout@v7.0.0
3434

3535
- uses: conda-incubator/setup-miniconda@v4
3636
with:

.github/workflows/coverity-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-22.04
1919
if: github.repository == 'OSGeo/PROJ'
2020
steps:
21-
- uses: actions/checkout@v6.0.2
21+
- uses: actions/checkout@v7.0.0
2222

2323
- name: Install Libraries
2424
run: |

.github/workflows/doc_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
container: ghcr.io/osgeo/proj-docs
2525

2626
steps:
27-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.7
27+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.1.7
2828

2929
- name: Update sphinx-rtd-theme
3030
shell: bash -l {0}

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ jobs:
4545
PUSH_PACKAGES: ${{ github.repository_owner == 'OSGeo' && github.event_name != 'pull_request' && (matrix.container == 'proj' || (matrix.container == 'proj-docs' && github.ref_name == 'master')) }}
4646
CONTAINER: ${{ matrix.container }}
4747
steps:
48-
- uses: actions/checkout@v6.0.2
48+
- uses: actions/checkout@v7.0.0
4949
- name: Lint
5050
id: lint
5151
run: |
5252
echo "are we pushing packages" ${{ env.PUSH_PACKAGES }}
5353
echo "event_name" ${{ github.event_name }}
5454
echo "ref" ${{ github.ref }}
5555
- name: Set up Docker
56-
uses: docker/setup-docker-action@v5
56+
uses: docker/setup-docker-action@v5.2.0
5757
with:
5858
daemon-config: |
5959
{
@@ -115,7 +115,7 @@ jobs:
115115
echo "ARCH=$ARCH" >> $GITHUB_OUTPUT
116116
117117
- name: Build docs image
118-
uses: docker/build-push-action@v7
118+
uses: docker/build-push-action@v7.2.0
119119
if: matrix.container == 'proj-docs'
120120
with:
121121
push: ${{ env.PUSH_PACKAGES == 'true' }}
@@ -152,7 +152,7 @@ jobs:
152152
echo "EOF" >> $GITHUB_OUTPUT
153153
154154
- name: Build image
155-
uses: docker/build-push-action@v7
155+
uses: docker/build-push-action@v7.2.0
156156
id: push
157157
if: matrix.container == 'proj'
158158
with:
@@ -174,7 +174,7 @@ jobs:
174174
org.opencontainers.image.created=${{ steps.prep.outputs.BUILD_DATE }}
175175
- name: Generate artifact attestation
176176
if: ${{ env.PUSH_PACKAGES == 'true' && matrix.container == 'proj' }}
177-
uses: actions/attest-build-provenance@v4
177+
uses: actions/attest-build-provenance@v4.1.0
178178
with:
179179
subject-name: ghcr.io/osgeo/proj
180180
subject-digest: ${{ steps.push.outputs.digest }}

.github/workflows/emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v6.0.2
27+
uses: actions/checkout@v7.0.0
2828

2929
- name: Build docker
3030
run: docker build -t proj-emscripten-builder scripts/ci/emscripten/

0 commit comments

Comments
 (0)