Skip to content

Commit 5386fcc

Browse files
authored
chore: Bump the fastly-cli version in CI (#435)
* Bump the fastly cli * Silence noisy fastly cli command in the object-store test
1 parent 5f54eaa commit 5386fcc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/actions/e2e/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
uses: fastly/compute-actions/setup@v4
2323
with:
2424
token: ${{ inputs.github-token }}
25-
cli_version: '7.0.0'
25+
cli_version: '7.0.1'
2626
- name: Download Engine
2727
uses: actions/download-artifact@v3
2828
with:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
uses: fastly/compute-actions/setup@v4
215215
with:
216216
token: ${{ secrets.GITHUB_TOKEN }}
217-
cli_version: '7.0.0'
217+
cli_version: '7.0.1'
218218

219219
- name: Restore Viceroy from cache
220220
uses: actions/cache@v3

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
restore-keys: engine-cargo-${{ runner.os }}-${{ runner.arch }}-
130130

131131
- run: yarn install --immutable
132-
132+
133133
- run: yarn build
134134

135135
- run: npm publish
@@ -143,8 +143,8 @@ jobs:
143143
uses: fastly/compute-actions/setup@v2
144144
with:
145145
token: ${{ secrets.GITHUB_TOKEN }}
146-
cli_version: '7.0.0'
147-
146+
cli_version: '7.0.1'
147+
148148
- run: yarn deploy
149149
env:
150150
FASTLY_API_TOKEN: ${{secrets.FASTLY_API_TOKEN}}

integration-tests/js-compute/fixtures/object-store/setup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ if (!STORE_ID) {
5252
STORE_ID = (await STORE_ID.json()).id
5353
}
5454

55-
let VERSION = String(await $`fastly service-version clone --version=latest --token $FASTLY_API_TOKEN`).trim()
55+
let VERSION = String(await $`fastly service-version clone --quiet --version=latest --token $FASTLY_API_TOKEN`).trim()
5656
VERSION = VERSION.match(/\d+$/)?.[0]
5757

5858
let SERVICE_ID = await $`fastly service describe --json --quiet --token $FASTLY_API_TOKEN`
@@ -68,4 +68,4 @@ await fetch(`https://api.fastly.com/service/${SERVICE_ID}/version/${VERSION}/res
6868
})
6969
await $`fastly service-version activate --version=${VERSION} --quiet --token $FASTLY_API_TOKEN`
7070

71-
console.log(`Set up has finished! Took ${(Date.now() - startTime) / 1000} seconds to complete`);
71+
console.log(`Set up has finished! Took ${(Date.now() - startTime) / 1000} seconds to complete`);

0 commit comments

Comments
 (0)