Merge pull request #707 from crazy-max/gh-runtime-token-info
Log GitHub Actions runtime token access controls
This commit is contained in:
		
						commit
						1d910c8aa2
					
				
							
								
								
									
										8
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/index.js.map
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/index.js.map
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										25
									
								
								dist/licenses.txt
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										25
									
								
								dist/licenses.txt
									
									
									
										generated
									
									
										vendored
									
									
								
							@ -724,6 +724,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
			
		||||
THE SOFTWARE.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
jwt-decode
 | 
			
		||||
MIT
 | 
			
		||||
The MIT License (MIT)
 | 
			
		||||
 
 | 
			
		||||
Copyright (c) 2015 Auth0, Inc. <support@auth0.com> (http://auth0.com)
 | 
			
		||||
 
 | 
			
		||||
Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
			
		||||
of this software and associated documentation files (the "Software"), to deal
 | 
			
		||||
in the Software without restriction, including without limitation the rights
 | 
			
		||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
			
		||||
copies of the Software, and to permit persons to whom the Software is
 | 
			
		||||
furnished to do so, subject to the following conditions:
 | 
			
		||||
 
 | 
			
		||||
The above copyright notice and this permission notice shall be included in all
 | 
			
		||||
copies or substantial portions of the Software.
 | 
			
		||||
 
 | 
			
		||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
			
		||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
			
		||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
			
		||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
			
		||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
			
		||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 | 
			
		||||
SOFTWARE.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
lru-cache
 | 
			
		||||
ISC
 | 
			
		||||
The ISC License
 | 
			
		||||
 | 
			
		||||
@ -33,6 +33,7 @@
 | 
			
		||||
    "@actions/github": "^5.1.1",
 | 
			
		||||
    "csv-parse": "^5.3.3",
 | 
			
		||||
    "handlebars": "^4.7.7",
 | 
			
		||||
    "jwt-decode": "^3.1.2",
 | 
			
		||||
    "semver": "^7.3.7",
 | 
			
		||||
    "tmp": "^0.2.1"
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										9
									
								
								src/github.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/github.ts
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
			
		||||
import jwt_decode, {JwtPayload} from 'jwt-decode';
 | 
			
		||||
 | 
			
		||||
interface Jwt extends JwtPayload {
 | 
			
		||||
  ac?: string;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export const parseRuntimeToken = (token: string): Jwt => {
 | 
			
		||||
  return jwt_decode<Jwt>(token);
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										10
									
								
								src/main.ts
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								src/main.ts
									
									
									
									
									
								
							@ -2,6 +2,7 @@ import * as fs from 'fs';
 | 
			
		||||
import * as buildx from './buildx';
 | 
			
		||||
import * as context from './context';
 | 
			
		||||
import * as docker from './docker';
 | 
			
		||||
import * as github from './github';
 | 
			
		||||
import * as stateHelper from './state-helper';
 | 
			
		||||
import * as core from '@actions/core';
 | 
			
		||||
import * as exec from '@actions/exec';
 | 
			
		||||
@ -14,6 +15,15 @@ async function run(): Promise<void> {
 | 
			
		||||
    // standalone if docker cli not available
 | 
			
		||||
    const standalone = !(await docker.isAvailable());
 | 
			
		||||
 | 
			
		||||
    await core.group(`GitHub Actions runtime token access controls`, async () => {
 | 
			
		||||
      const actionsRuntimeToken = process.env['ACTIONS_RUNTIME_TOKEN'];
 | 
			
		||||
      if (actionsRuntimeToken) {
 | 
			
		||||
        core.info(JSON.stringify(JSON.parse(github.parseRuntimeToken(actionsRuntimeToken).ac as string), undefined, 2));
 | 
			
		||||
      } else {
 | 
			
		||||
        core.info(`ACTIONS_RUNTIME_TOKEN not set`);
 | 
			
		||||
      }
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    core.startGroup(`Docker info`);
 | 
			
		||||
    if (standalone) {
 | 
			
		||||
      core.info(`Docker info skipped in standalone mode`);
 | 
			
		||||
 | 
			
		||||
@ -2828,6 +2828,11 @@ json5@2.x, json5@^2.1.2:
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
 | 
			
		||||
  integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
 | 
			
		||||
 | 
			
		||||
jwt-decode@^3.1.2:
 | 
			
		||||
  version "3.1.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-3.1.2.tgz#3fb319f3675a2df0c2895c8f5e9fa4b67b04ed59"
 | 
			
		||||
  integrity sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==
 | 
			
		||||
 | 
			
		||||
kleur@^3.0.3:
 | 
			
		||||
  version "3.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user