From f61f17b30844c58dc0c36e39d8887824fe0ad06d Mon Sep 17 00:00:00 2001 From: Silje Enge Kristensen Date: Fri, 28 Jun 2024 10:52:05 +0200 Subject: [PATCH] ci: set persist-credentials to false for checkout action --- .github/workflows/node.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index c511905..e0194cf 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -16,6 +16,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + persist-credentials: false - name: Install Omniorb 4 run: sudo apt-get install libomniorb4-dev @@ -42,6 +44,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + persist-credentials: false - name: Use Node.js 18.x uses: actions/setup-node@v3 @@ -90,6 +94,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + persist-credentials: false - name: Determine if images should be published to DockerHub id: dockerhub