Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
node: [*node_version]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Cache .eslintcache
if: matrix.nodeRun == matrix.nodeBuild
id: eslintcache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
.eslintcache
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1
fetch-depth: 0
Expand All @@ -141,7 +141,7 @@ jobs:

- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/docs/node_modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1
fetch-depth: 0
Expand All @@ -19,7 +19,7 @@ jobs:

- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/docs/node_modules
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand All @@ -69,7 +69,7 @@ jobs:
run: npm ci
- name: Cache .eslintcache
id: eslintcache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
.eslintcache
Expand All @@ -91,14 +91,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}

- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/docs/node_modules
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
uses: docker/setup-qemu-action@v4.1.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
Expand All @@ -177,14 +177,14 @@ jobs:
- name: Wait for npm publish
run: node scripts/wait-npm-publish.js latest ${{ steps.package_version.outputs.version }}
- name: Build and push ${{ steps.package_version.outputs.version }}
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.2.0
with:
push: true
tags: m365pnp/cli-microsoft365:${{ steps.package_version.outputs.version }}
build-args: |
CLI_VERSION=${{ steps.package_version.outputs.version }}
- name: Build and push latest
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.2.0
with:
push: true
tags: m365pnp/cli-microsoft365:latest
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release_next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
node: [*node_version]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Cache .eslintcache
if: matrix.nodeRun == matrix.nodeBuild
id: eslintcache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
.eslintcache
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1
fetch-depth: 0
Expand All @@ -142,7 +142,7 @@ jobs:

- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/docs/node_modules
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Cache node modules
id: cache
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |
**/node_modules
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
uses: docker/setup-qemu-action@v4.1.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
Expand All @@ -256,14 +256,14 @@ jobs:
- name: Wait for npm publish
run: node scripts/wait-npm-publish.js next ${{ steps.package_version.outputs.version }}
- name: Build and push ${{ steps.package_version.outputs.version }}
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.2.0
with:
push: true
tags: m365pnp/cli-microsoft365:${{ steps.package_version.outputs.version }}
build-args: |
CLI_VERSION=${{ steps.package_version.outputs.version }}
- name: Build and push next
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.2.0
with:
push: true
tags: m365pnp/cli-microsoft365:next
Expand Down
Loading