Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-actions group across 3 directories with 9 updates #8643

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-python-poetry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
echo "${APPDATA}\.poetry\bin" >> "$GITHUB_PATH"

- name: Install python
uses: actions/setup-python@e9675cc634901ff55d92c575ecd6945e65464b00 # pin v5.2.0
uses: actions/setup-python@19dfb7b659fa9e60c2f89c33335ab5f6f1792b6e # pin v5.2.0
id: setup-python
with:
python-version-file: ${{ inputs.project-path }}/pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/use-pre-commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
steps:
- name: Cache pre-commit install
id: cache-pre-commit
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
key: pre-commit-${{ inputs.version }}-${{ hashFiles(inputs.config-file) }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_parse_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
timeout-minutes: 5

- name: Install python
uses: actions/setup-python@e9675cc634901ff55d92c575ecd6945e65464b00 # pin v5.2.0
uses: actions/setup-python@19dfb7b659fa9e60c2f89c33335ab5f6f1792b6e # pin v5.2.0
id: setup-python
with:
python-version: 3.12
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_releaser_nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
timeout-minutes: 5

- name: Install python
uses: actions/setup-python@e9675cc634901ff55d92c575ecd6945e65464b00 # pin v5.2.0
uses: actions/setup-python@19dfb7b659fa9e60c2f89c33335ab5f6f1792b6e # pin v5.2.0
id: setup-python
with:
python-version: 3.12
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:

- name: Restore libparsec if Rust hasn't been modified
id: cache-libparsec
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand All @@ -134,7 +134,7 @@ jobs:
timeout-minutes: 2

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@4d1965c9142484e48d40c19de54b5cba84953a06 # pin v1.10.0
uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # pin v1.10.1
if: steps.cache-libparsec.outputs.cache-hit != 'true'
with:
# We setup the cache by hand, see below
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
(!inputs.style-only)
&& steps.cache-libparsec.outputs.cache-hit != 'true'
&& !contains(github.ref, 'gh-readonly-queue')
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
uses: ./.github/actions/system-info
timeout-minutes: 1

- uses: actions-rust-lang/setup-rust-toolchain@4d1965c9142484e48d40c19de54b5cba84953a06 # pin v1.10.0
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # pin v1.10.1
with:
# We setup the cache by hand, see below
cache: false
Expand All @@ -102,7 +102,7 @@ jobs:
timeout-minutes: 5

# Install cargo nextest command
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected], [email protected], [email protected]

Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
uses: ./.github/actions/system-info
timeout-minutes: 1

- uses: actions-rust-lang/setup-rust-toolchain@4d1965c9142484e48d40c19de54b5cba84953a06 # pin v1.10.0
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # pin v1.10.1
with:
# We setup the cache by hand, see below
cache: false
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
timeout-minutes: 5

# Install cargo nextest command
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected]

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Restore libparsec if Rust hasn't been modified
id: cache-libparsec
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand All @@ -102,7 +102,7 @@ jobs:
timeout-minutes: 2

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@4d1965c9142484e48d40c19de54b5cba84953a06 # pin v1.10.0
uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # pin v1.10.1
if: steps.cache-libparsec.outputs.cache-hit != 'true'
with:
target: wasm32-unknown-unknown
Expand All @@ -123,7 +123,7 @@ jobs:
timeout-minutes: 5

# Install wasm-pack command
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: wasm-pack@${{ env.wasm-pack-version }}

Expand All @@ -135,7 +135,7 @@ jobs:

- name: Save libparsec to be reuse later
if: steps.cache-libparsec.outputs.cache-hit != 'true'
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
- newsfragments/**

- name: Install python
uses: actions/setup-python@e9675cc634901ff55d92c575ecd6945e65464b00 # pin v5.2.0
uses: actions/setup-python@19dfb7b659fa9e60c2f89c33335ab5f6f1792b6e # pin v5.2.0
id: setup-python
with:
python-version: 3.12
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
diff --unified .pre-commit-config.yaml $TEMP_FILE || true
echo "path=$TEMP_FILE" >> $GITHUB_OUTPUT

- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected]

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
if: steps.should-run-python-analysis.outputs.run == 'true'
uses: github/codeql-action/init@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
uses: github/codeql-action/init@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
with:
languages: python
setup-python-dependencies: false
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Perform CodeQL Analysis
if: steps.should-run-python-analysis.outputs.run == 'true'
uses: github/codeql-action/analyze@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
uses: github/codeql-action/analyze@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
with:
category: /language:python

Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
# # Initializes the CodeQL tools for scanning.
# - name: Initialize CodeQL
# if: steps.should-run-java-analysis.outputs.run == 'true'
# uses: github/codeql-action/init@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
# uses: github/codeql-action/init@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
# with:
# languages: java
# # If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -154,15 +154,15 @@ jobs:

# - name: Autobuild android
# if: steps.should-run-java-analysis.outputs.run == 'true'
# uses: github/codeql-action/autobuild@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
# uses: github/codeql-action/autobuild@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
# with:
# working-directory: client/android
# env:
# GRADLE_LIBPARSEC_BUILD_STRATEGY: no_build

# - name: Perform CodeQL Analysis
# if: steps.should-run-java-analysis.outputs.run == 'true'
# uses: github/codeql-action/analyze@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
# uses: github/codeql-action/analyze@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
# with:
# category: /language:java

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
if: steps.should-run-js-analysis.outputs.run == 'true'
uses: github/codeql-action/init@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
uses: github/codeql-action/init@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
with:
languages: typescript

Expand All @@ -202,12 +202,12 @@ jobs:

- name: Autobuild for typescript
if: steps.should-run-js-analysis.outputs.run == 'true'
uses: github/codeql-action/autobuild@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
uses: github/codeql-action/autobuild@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
with:
working-directory: client

- name: Perform CodeQL Analysis
if: steps.should-run-js-analysis.outputs.run == 'true'
uses: github/codeql-action/analyze@461ef6c76dfe95d5c364de2f431ddbd31a417628 # pin v3.26.9
uses: github/codeql-action/analyze@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # pin v3.26.11
with:
category: /language:typescript
4 changes: 2 additions & 2 deletions .github/workflows/cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Restore cspell cache
id: cache
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
path: |
package-lock.json
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
if: >-
steps.installation.outputs.previous-cache-hash != hashFiles('.cspellcache')
&& contains(github.ref, 'gh-readonly-queue') != 'true'
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin v4.0.2
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # pin v4.1.0
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1

- name: Log in to the Github Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
Expand All @@ -45,7 +45,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Install python
uses: actions/setup-python@e9675cc634901ff55d92c575ecd6945e65464b00 # pin v5.2.0
uses: actions/setup-python@19dfb7b659fa9e60c2f89c33335ab5f6f1792b6e # pin v5.2.0
id: setup-python
with:
python-version: 3.12
Expand All @@ -70,7 +70,7 @@ jobs:
latest=${{ github.event_name == 'push' && github.ref_type == 'tag' }}

- name: Build and export to Docker
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
id: build
with:
context: .
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
run: echo "${{ steps.metadata.outputs.tags }}"

- name: Build and publish
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
id: publish
with:
context: .
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-testbed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1

- name: Log in to the Github Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
Expand All @@ -54,7 +54,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Install python
uses: actions/setup-python@e9675cc634901ff55d92c575ecd6945e65464b00 # pin v5.2.0
uses: actions/setup-python@19dfb7b659fa9e60c2f89c33335ab5f6f1792b6e # pin v5.2.0
id: setup-python
with:
python-version: 3.12
Expand All @@ -76,7 +76,7 @@ jobs:
latest=${{ github.event_name == 'workflow_dispatch' }}

- name: Build and export to Docker
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
id: build
with:
context: .
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

- name: Build and publish
if: github.event_name == 'workflow_dispatch'
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
with:
context: .
file: server/packaging/testbed-server/testbed-server.dockerfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
working-directory: client

# Install syft
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected], wasm-pack@${{ env.wasm-pack-version }}

Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
mv -v parsec_*_*.snap Parsec_${{ steps.version.outputs.full }}_linux_$ARCH.snap

# Install syft
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected]

Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
timeout-minutes: 1

# Install syft
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
run: git apply --allow-empty ${{ runner.temp }}/version.patch/version.patch

- name: Build wheel
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # pin v2.21.1
uses: pypa/cibuildwheel@f1859528322d7b29d4493ee241a167807661dfb4 # pin v2.21.2
with:
package-dir: server
output-dir: dist
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
run: python server/packaging/wheel/wheel_it.py ./server --output dist --skip-wheel

# Install syft
- uses: taiki-e/install-action@9bef7e9c3d7c7aa986ef19933b0722880ae377e0 # pin v2.44.13
- uses: taiki-e/install-action@b1acf153d459cd533e9e0d25a07042be1dd2ed71 # pin v2.44.25
with:
tool: [email protected]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:

- name: Publish wheel on PyPI
if: steps.version.outputs.local == ''
uses: pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # pin v1.10.2
uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597 # pin v1.10.3
with:
user: __token__
password: ${{ secrets.PYPI_CREDENTIALS }}
Expand Down
Loading