Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 9, 2024
1 parent 8a0646f commit b4461eb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- run: pnpm run prepublishOnly
working-directory: .

- uses: actions/[email protected].2
- uses: actions/[email protected].0
with:
name: .-Node-${{ matrix.node-version }}-Target
path: ./Target
4 changes: 4 additions & 0 deletions Action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@

Action=(
"actions-rs/toolchain"
"actions-rs/cargo"
"actions/checkout"
"actions/setup-node"
"dependabot/fetch-metadata"
"github/codeql-action"
"pnpm/action-setup"
"pozil/auto-assign-issue"
"cloudflare/wrangler-action"
"actions/upload-artifact"
"actions/cache"
)

for Action in "${Action[@]}"; do
Expand Down
2 changes: 1 addition & 1 deletion Source/Command/Cloudflare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default async () =>
Environment === "Cloudflare"
) {
Base.add(`
- uses: cloudflare/wrangler-action@v3.8.0
- uses: cloudflare/wrangler-action@v3.9.0
with:
apiToken: \${{ secrets.CF_API_TOKEN }}
accountId: \${{ secrets.CF_ACCOUNT_ID }}
Expand Down
6 changes: 3 additions & 3 deletions Source/Command/Node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default async () =>
- run: pnpm run build
working-directory: .
- uses: actions/[email protected].0
- uses: actions/[email protected].2
with:
name: .${Directory.replaceAll("/", "-")}-Node-\${{ matrix.node-version }}-Target
path: .${Directory}/Target
Expand All @@ -112,7 +112,7 @@ export default async () =>
- run: pnpm run prepublishOnly
working-directory: .
- uses: actions/[email protected].0
- uses: actions/[email protected].2
with:
name: .${Directory.replaceAll("/", "-")}-Node-\${{ matrix.node-version }}-Target
path: .${Directory}/Target
Expand All @@ -124,7 +124,7 @@ export default async () =>
- run: pnpm run Build
working-directory: .
- uses: actions/[email protected].0
- uses: actions/[email protected].2
with:
name: .${Directory.replaceAll("/", "-")}-Node-\${{ matrix.node-version }}-Target
path: .${Directory}/Target
Expand Down
2 changes: 1 addition & 1 deletion Source/Command/Rust.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default async () =>
Environment === "Cargo"
) {
Base.add(`
- uses: actions/cache@v4.0.2
- uses: actions/cache@v4.1.1
with:
path: |
~/.cargo/bin/
Expand Down

0 comments on commit b4461eb

Please sign in to comment.