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-workflows group with 6 updates #6157

Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Restore libparsec if Rust hasn't been modified
if: (!inputs.style-only)
id: cache-libparsec
uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # pin v3.3.2
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin v3.3.3
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand All @@ -127,15 +127,15 @@ jobs:
timeout-minutes: 2

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@c7e1de28469b16b21a170a200a7a9e810bb5cdff # pin v1.6.0
uses: actions-rust-lang/setup-rust-toolchain@b113a30d27a8e59c969077c0a0168cc13dab5ffc # pin v1.8.0
if: (!inputs.style-only) && steps.cache-libparsec.outputs.cache-hit != 'true'
with:
# We setup the cache by hand, see below
cache: false
timeout-minutes: 5

- name: Retrieve Rust cache
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # pin v2.7.1
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # pin v2.7.3
if: (!inputs.style-only) && steps.cache-libparsec.outputs.cache-hit != 'true'
with:
# Cache is limited to 10Go (and cache is ~700mo per platform !). On top of that.
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
(!inputs.style-only)
&& steps.cache-libparsec.outputs.cache-hit != 'true'
&& !contains(github.ref, 'gh-readonly-queue')
uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # pin v3.3.2
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin v3.3.3
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin v4.1.1
timeout-minutes: 5

- uses: actions-rust-lang/setup-rust-toolchain@c7e1de28469b16b21a170a200a7a9e810bb5cdff # pin v1.6.0
- uses: actions-rust-lang/setup-rust-toolchain@b113a30d27a8e59c969077c0a0168cc13dab5ffc # pin v1.8.0
with:
# We setup the cache by hand, see below
cache: false
timeout-minutes: 10

- name: Retrieve Rust cache
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # pin v2.7.1
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # pin v2.7.3
with:
# Cache is limited to 10Go (and cache is ~700mo per platform !). On top of that.
# cache is only shared between master and the PRs (and not across PRs).
Expand All @@ -96,7 +96,7 @@ jobs:
timeout-minutes: 5

# Install cargo nextest command
- uses: taiki-e/install-action@da1493208a5b2c79ad2d7dff9fd50693851da51a # pin v2.24.1
- uses: taiki-e/install-action@98cdbf3892eb5b31fc9b26666699439be4d9d88a # pin v2.25.1
with:
tool: nextest@0.9.54, wasm-pack@0.11.0, cargo-deny@0.14.3

Expand Down Expand Up @@ -188,14 +188,14 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin v4.1.1
timeout-minutes: 5

- uses: actions-rust-lang/setup-rust-toolchain@c7e1de28469b16b21a170a200a7a9e810bb5cdff # pin v1.6.0
- uses: actions-rust-lang/setup-rust-toolchain@b113a30d27a8e59c969077c0a0168cc13dab5ffc # pin v1.8.0
with:
# We setup the cache by hand, see below
cache: false
timeout-minutes: 10

- name: Retrieve Rust cache
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # pin v2.7.1
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # pin v2.7.3
with:
# Cache is limited to 10Go (and cache is ~700mo per platform !). On top of that.
# cache is only shared between master and the PRs (and not across PRs).
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
mv 'D:/a/_temp/winfsp-tests-x64.exe' 'C:/Program Files (x86)/WinFsp/bin/'

# Install cargo nextest command
- uses: taiki-e/install-action@da1493208a5b2c79ad2d7dff9fd50693851da51a # pin v2.24.1
- uses: taiki-e/install-action@98cdbf3892eb5b31fc9b26666699439be4d9d88a # pin v2.25.1
with:
tool: nextest@0.9.54

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

- name: Restore libparsec if Rust hasn't been modified
id: cache-libparsec
uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # pin v3.3.2
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin v3.3.3
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand All @@ -90,7 +90,7 @@ jobs:
timeout-minutes: 2

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@c7e1de28469b16b21a170a200a7a9e810bb5cdff # pin v1.6.0
uses: actions-rust-lang/setup-rust-toolchain@b113a30d27a8e59c969077c0a0168cc13dab5ffc # pin v1.8.0
if: steps.cache-libparsec.outputs.cache-hit != 'true'
with:
target: wasm32-unknown-unknown
Expand All @@ -99,7 +99,7 @@ jobs:
timeout-minutes: 5

- name: Retrieve Rust cache
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # pin v2.7.1
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # pin v2.7.3
if: steps.cache-libparsec.outputs.cache-hit != 'true'
with:
# Cache is limited to 10Go (and cache is ~700mo per platform !). On top of that.
Expand All @@ -110,7 +110,7 @@ jobs:
timeout-minutes: 5

# Install wasm-pack command
- uses: taiki-e/install-action@da1493208a5b2c79ad2d7dff9fd50693851da51a # pin v2.24.1
- uses: taiki-e/install-action@98cdbf3892eb5b31fc9b26666699439be4d9d88a # pin v2.25.1
with:
tool: wasm-pack@${{ env.wasm-pack-version }}

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

- name: Save libparsec to be reuse later
if: steps.cache-libparsec.outputs.cache-hit != 'true'
uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # pin v3.3.2
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin v3.3.3
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand Down
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@704facf57e6136b1bc63b828d79edcd491f0ee84 # pin v3.3.2
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin v3.3.3
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@704facf57e6136b1bc63b828d79edcd491f0ee84 # pin v3.3.2
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin v3.3.3
with:
key: ${{ steps.cache-key.outputs.key }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/package-ionic-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
working-directory: client

# Install syft
- uses: taiki-e/install-action@da1493208a5b2c79ad2d7dff9fd50693851da51a # pin v2.24.1
- uses: taiki-e/install-action@98cdbf3892eb5b31fc9b26666699439be4d9d88a # pin v2.25.1
with:
tool: syft@0.84.0, wasm-pack@${{ env.wasm-pack-version }}

Expand All @@ -56,7 +56,7 @@ jobs:
- name: Generate SBOM
run: syft packages --config=.syft.yaml --output=spdx-json=Parsec-SBOM-Web.spdx.json .

- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # pin v4.0.0
- uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # pin v4.1.0
with:
name: webapp
path: |
Expand Down Expand Up @@ -118,14 +118,14 @@ jobs:
timeout-minutes: 5

# Install syft
- uses: taiki-e/install-action@da1493208a5b2c79ad2d7dff9fd50693851da51a # pin v2.24.1
- uses: taiki-e/install-action@98cdbf3892eb5b31fc9b26666699439be4d9d88a # pin v2.25.1
with:
tool: syft@0.84.0

- name: Generate SBOM
run: syft packages --config=.syft.yaml --output=spdx-json=Parsec-SBOM-Electron-${{ matrix.platform }}.spdx.json .

- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # pin v4.0.0
- uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # pin v4.1.0
with:
name: ${{ runner.os }}-${{ runner.arch }}-electron-app
path: |
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 @@ -139,14 +139,14 @@ jobs:
run: python server/packaging/wheel/wheel_it.py ./server --output dist --skip-wheel

# Install syft
- uses: taiki-e/install-action@da1493208a5b2c79ad2d7dff9fd50693851da51a # pin v2.24.1
- uses: taiki-e/install-action@98cdbf3892eb5b31fc9b26666699439be4d9d88a # pin v2.25.1
with:
tool: syft@0.84.0

- name: Generate SBOM
run: syft packages --config=.syft.yaml --output=spdx-json=dist/Parsec-SBOM-Wheel-${{ matrix.platform }}.spdx.json .

- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # pin v4.0.0
- uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # pin v4.1.0
with:
name: ${{ runner.os }}-${{ runner.arch }}-wheel
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download every artifact generated (and uploaded)
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # pin v4.1.0
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # pin v4.1.1
with:
path: artifacts
timeout-minutes: 5
Expand Down
Loading