Skip to content

Commit

Permalink
📌 Update workflow dependency versions
Browse files Browse the repository at this point in the history
Various Github workflow dependencies are warning of Node version
deprecations, which is clouding up the workflow log. This updates
the versions of the dependent actions to minimize the warnings.
  • Loading branch information
bitwizeshift committed Feb 6, 2024
1 parent 5551c0f commit e766ece
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cargo-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:

- name: Cache build
id: cargo-build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: cargo-build-${{ inputs.profile }}-${{ runner.os }}-${{ hashFiles('frameworks/**/*.rs', 'alloy/**/*.rs', 'example/**/*.rs', '**/Cargo.toml', 'Cargo.toml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cargo-code-coverage/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
steps:
- name: Cache Coverage
id: cargo-coverage
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.output-file }}
key: cargo-coverage-${{ runner.os }}-${{ hashFiles('**/*.rs', '**/Cargo.toml', 'Cargo.toml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cargo-install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
steps:
- name: Cache installation
id: cargo-install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cargo/bin/${{ inputs.target }}
key: cargo-install-${{ runner.os }}-${{ inputs.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/checkout/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- name: Cache Submodules
id: cache-submodule
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
3rd-party
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/npm-install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- name: Cache installation
id: npm-install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: npm-install-${{ inputs.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/prepare-runner/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ runs:
vulkan-use-cache: true

- name: Cache vulkan-sdk.dmg
uses: actions/cache@v3
uses: actions/cache@v4
if: runner.os == 'macOS'
id: download-vulkan
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
| sarif-fmt
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Upload Pages Artifact
if: inputs.skip-publish != true
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ./target/doc

Expand All @@ -119,7 +119,7 @@ jobs:
steps:
- name: Upload GH Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

- name: Create summary
if: success()
Expand Down

0 comments on commit e766ece

Please sign in to comment.