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 GitHub workflow actions to their latest versions #434

Merged
merged 2 commits into from
Sep 26, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Get Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v2
with:
application_id: ${{ secrets.CC_OSS_BOT_ID }}
application_private_key: ${{ secrets.CC_OSS_BOT_PEM }}
- uses: fastify/github-action-merge-dependabot@v3.0.0
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ steps.get_workflow_token.outputs.token }}
target: minor
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
needs: publish-github-release
steps:
- name: Clone
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
Expand All @@ -39,7 +39,7 @@ jobs:
components: rustfmt, clippy

- name: Install wasm-pack
uses: jetli/wasm-pack-action@v0.3.0
uses: jetli/wasm-pack-action@v0.4.0
with:
version: ${{env.WASM_PACK_VERSION}}

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
needs: publish-binary-npm-packages
steps:
- name: Clone
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: release-checksums
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
cpu: arm64
steps:
- name: Clone
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: release
Expand Down Expand Up @@ -222,12 +222,12 @@ jobs:
application_private_key: ${{ secrets.CC_OSS_BOT_PEM }}

- name: Clone
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
token: ${{ steps.get_workflow_token.outputs.token }}

- name: Swap to main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: main
fetch-depth: 0 # Full fetch
Expand Down Expand Up @@ -352,12 +352,12 @@ jobs:
run_tests: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -411,13 +411,13 @@ jobs:
components: rustfmt, clippy

- name: Install wasm-pack
uses: jetli/wasm-pack-action@v0.3.0
uses: jetli/wasm-pack-action@v0.4.0
with:
version: ${{env.WASM_PACK_VERSION}}

- name: Install humane
if: matrix.run_tests == true
uses: supplypike/setup-bin@v1
uses: supplypike/setup-bin@v3
with:
uri: "https://github.com/CloudCannon/humane/releases/download/v${{env.HUMANE_VERSION}}/humane-v${{env.HUMANE_VERSION}}-${{matrix.humane_target}}.tar.gz"
name: "humane"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
cross: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -71,12 +71,12 @@ jobs:
rustc --version

- name: Install wasm-pack
uses: jetli/wasm-pack-action@v0.3.0
uses: jetli/wasm-pack-action@v0.4.0
with:
version: ${{env.WASM_PACK_VERSION}}

- name: Install humane
uses: supplypike/setup-bin@v1
uses: supplypike/setup-bin@v3
with:
uri: "https://github.com/CloudCannon/humane/releases/download/v${{env.HUMANE_VERSION}}/humane-v${{env.HUMANE_VERSION}}-${{matrix.target}}.tar.gz"
name: "humane"
Expand Down