From d6854f48957664196182a24cf21451ec0a1d8220 Mon Sep 17 00:00:00 2001 From: Thomas Manson Date: Tue, 23 Apr 2024 16:54:36 +1000 Subject: [PATCH] Update action versions to remove warnings --- .github/workflows/node.js.yaml | 4 ++-- .github/workflows/publish-cstg-example.yml | 4 ++-- .github/workflows/publish-secure-signal-examples.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/node.js.yaml b/.github/workflows/node.js.yaml index 5952f0f..dce0afa 100644 --- a/.github/workflows/node.js.yaml +++ b/.github/workflows/node.js.yaml @@ -18,9 +18,9 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' diff --git a/.github/workflows/publish-cstg-example.yml b/.github/workflows/publish-cstg-example.yml index ba3566f..6228f96 100644 --- a/.github/workflows/publish-cstg-example.yml +++ b/.github/workflows/publish-cstg-example.yml @@ -15,7 +15,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: @@ -30,7 +30,7 @@ jobs: tags: | type=sha,format=short - name: Build and push Docker CSTG Example image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: examples/cstg push: true diff --git a/.github/workflows/publish-secure-signal-examples.yml b/.github/workflows/publish-secure-signal-examples.yml index 6861d3c..7423d20 100644 --- a/.github/workflows/publish-secure-signal-examples.yml +++ b/.github/workflows/publish-secure-signal-examples.yml @@ -14,7 +14,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: @@ -30,7 +30,7 @@ jobs: type=sha,format=short type=raw,value=latest - name: Build and push Docker server_only image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: examples/google-secure-signals-integration/server_only push: true @@ -43,7 +43,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: @@ -59,7 +59,7 @@ jobs: type=sha,format=short type=raw,value=latest - name: Build and push Docker standard image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: examples/google-secure-signals-integration/with_sdk_v3 push: true